Enhance Dependabot configuration for Rust and Actions

Added cooldown and grouping settings for Rust and GitHub Actions dependencies.
This commit is contained in:
Marco Cadetg
2025-11-26 08:10:24 +01:00
committed by GitHub
parent abfac77826
commit fed1efaa30

View File

@@ -5,9 +5,30 @@ updates:
directory: "/"
schedule:
interval: "daily"
cooldown:
default-days: 3
semver-major-days: 7
semver-minor-days: 4
semver-patch-days: 3
groups:
rust-dependencies:
patterns:
- "*"
update-types:
- "major"
- "minor"
- "patch"
# Maintain GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
groups:
actions:
patterns:
- "*"
update-types:
- "major"
- "minor"
- "patch"