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
19 changes: 18 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,15 @@ updates:
commit-message:
prefix: "deps(rust)"
groups:
# Group ALL Rust updates into a single PR for manual review
# Group minor + patch Rust updates into a single PR; majors stay
# individual so a breaking API change (e.g. hmac 0.12 → 0.13) doesn't
# mask the rest of the group.
rust-all:
patterns:
- "*"
update-types:
- "minor"
- "patch"

# GitHub Actions
- package-ecosystem: "github-actions"
Expand All @@ -37,6 +42,9 @@ updates:
actions-all:
patterns:
- "*"
update-types:
- "minor"
- "patch"

# Python DPoP library
- package-ecosystem: "pip"
Expand All @@ -54,6 +62,9 @@ updates:
python-all:
patterns:
- "*"
update-types:
- "minor"
- "patch"

# Go DPoP library
- package-ecosystem: "gomod"
Expand All @@ -71,6 +82,9 @@ updates:
go-all:
patterns:
- "*"
update-types:
- "minor"
- "patch"

# Java DPoP library (Gradle)
- package-ecosystem: "gradle"
Expand All @@ -88,3 +102,6 @@ updates:
java-all:
patterns:
- "*"
update-types:
- "minor"
- "patch"
Loading