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

Allow routine patch updates

This ignore rule applies to every dependency, so Dependabot will not open any semver-patch updates for this ecosystem. That makes the cargo-minor-and-patch group misleading because its patch updates can never reach the group, and it also suppresses routine GitHub Actions patch updates. Remove these broad ignore rules or narrow them to the specific dependencies that should be excluded.

[RULE] dependency-update-policy ·

- dependency-name: "*"
update-types: ["version-update:semver-patch"]

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Keep patch-level security updates enabled

Dependabot applies ignore rules to security updates as well as routine version updates, so this wildcard suppresses a security PR whenever the vulnerability is fixed by a semver-patch release; the identical GitHub Actions rule has the same effect. This contradicts the commit's stated intent that security updates remain unaffected and can leave vulnerable dependencies or actions unpatched, so patch filtering must not be applied through this global ignore rule.

Useful? React with 👍 / 👎.

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