-
Notifications
You must be signed in to change notification settings - Fork 4
chore: ignore Dependabot patch releases #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,9 @@ updates: | |
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| ignore: | ||
| - dependency-name: "*" | ||
| update-types: ["version-update:semver-patch"] | ||
|
Comment on lines
+7
to
+9
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When an advisory is fixed by a patch release, Dependabot security updates honor Useful? React with 👍 / 👎. |
||
| open-pull-requests-limit: 5 | ||
| commit-message: | ||
| prefix: "deps" | ||
|
|
@@ -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" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep patch updates enabled for GitHub Actions
This rule also applies to the GitHub Actions update group, preventing automatic patch updates for every action. That can leave workflow actions on versions with known or subsequently fixed vulnerabilities and delays security maintenance across CI. Remove the wildcard suppression or narrowly exclude only actions with a demonstrated incompatibility.
Additional
critiqueobservationAllow grouped Cargo patch updates
[RULE] dependency-update-scope
This wildcard ignore takes precedence over the
cargo-minor-and-patchgroup below, so the group can receive minor updates but never patch updates. For example, a dependency update from0.13.1to0.13.2will be suppressed entirely, including fixes delivered in patch releases, contradicting the existing group configuration and the repository's stated Dependabot practice. Remove this ignore entry or narrow it to dependencies that are intentionally excluded.Suggested change for this observation (reference only)
Additional
securityobservationDo not suppress patch updates for every dependency
[RULE] dependency-update-suppression
The wildcard ignore rule disables routine patch updates for every Cargo dependency in this update group, including patches that may contain security fixes or important bug fixes. Dependabot's separate security-update flow can cover known advisories, but fixes that are not yet recognized as advisories—or updates needed to keep the dependency graph secure—will no longer be proposed automatically. Remove the wildcard suppression or scope it to specific dependencies with a documented compatibility reason.
[RULE] dependency-update-suppression ·