Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ updates:
directory: /
schedule:
interval: weekly
ignore:

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

priority medium security confident

Do not ignore all patch updates

This wildcard ignore suppresses every patch-level version update for the Cargo ecosystem, and the same configuration is added for GitHub Actions below. Patch releases commonly contain security fixes, so this prevents Dependabot from opening updates that keep dependencies current and increases the window in which known vulnerabilities can remain deployed. Remove the blanket patch-version ignore or restrict it to explicitly justified dependencies.

[RULE] dependency-update-policy ·

- dependency-name: "*"
update-types: ["version-update:semver-patch"]
open-pull-requests-limit: 5
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
open-pull-requests-limit: 5
Loading