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,6 +4,9 @@ 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 critique confident

Do not suppress all routine patch updates

This ignores every semver-patch update for the entire Cargo and GitHub Actions ecosystems. As a result, the existing cargo-minor-and-patch group can no longer receive Cargo patch updates, and weekly patch fixes—including dependency bug and security fixes delivered as patch releases—will not be proposed as normal update PRs. Remove this ignore rule or narrow it to specific dependencies whose patch updates are intentionally deferred.


Additional security observation

priority medium confident

Continue proposing patch dependency updates

[RULE] ignored-security-updates

Ignoring every patch update for every dependency prevents routine fixes from being proposed, including security fixes delivered as patch releases and fixes to GitHub Actions. Although Dependabot may separately raise some alert-driven security updates, this blanket suppression creates an avoidable gap in maintenance and can leave vulnerable or broken versions in use. Remove the wildcard patch ignore (in both update blocks), or narrowly document and scope any dependency-specific exceptions.

[RULE] disabled-updates ·

- dependency-name: "*"
update-types: ["version-update:semver-patch"]
open-pull-requests-limit: 5
commit-message:
prefix: "deps"
Expand All @@ -18,6 +21,9 @@ updates:
directory: /
schedule:
interval: weekly
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
open-pull-requests-limit: 5
commit-message:
prefix: "ci"
Expand Down
Loading