Skip to content

Commit 537bf55

Browse files
Update Dependabot configuration to ignore major version updates and specific project dependencies
1 parent 99db588 commit 537bf55

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ updates:
1717
# Ignore major version updates for now
1818
ignore:
1919
- dependency-name: "*"
20-
update-types: ["version-update:semver-major"]
20+
update-types: [ "version-update:semver-major" ]
21+
# Ignore net.sf.robocode dependencies (this is our own project artifact)
22+
# The repository used to have .NET plugins with Maven projects that were
23+
# removed in 2021. GitHub's security scanning still references these old paths.
24+
- dependency-name: "net.sf.robocode:*"
2125

2226
# Maintain dependencies for GitHub Actions
2327
- package-ecosystem: "github-actions"
2428
directory: "/"
2529
schedule:
2630
interval: "weekly"
2731
open-pull-requests-limit: 5
28-

0 commit comments

Comments
 (0)