Skip to content

Commit 378272c

Browse files
committed
CI: prevent Dependabot from upgrading LSP4j
1 parent ea08f3d commit 378272c

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
# Dependabot configuration:
2-
# https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates
3-
1+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#ignore
42
version: 2
53
updates:
6-
# Maintain dependencies for Gradle dependencies
74
- package-ecosystem: "gradle"
85
directory: "/"
96
schedule:
107
interval: "daily"
11-
# Maintain dependencies for GitHub Actions
8+
ignore:
9+
# Prevent Dependabot from updating LSP4J to new versions
10+
# TODO: Remove this block after updating to the new PSES
11+
- dependency-name: "org.eclipse.lsp4j:org.eclipse.lsp4j"
12+
update-types:
13+
- version-update:semver-major
14+
- version-update:semver-minor
1215
- package-ecosystem: "github-actions"
1316
directory: "/"
1417
schedule:

0 commit comments

Comments
 (0)