Add cooldown and grouping to Dependabot config (#14931)

- Add 7-day cooldown to protect against supply chain attacks
- Group updates by ecosystem to reduce PR noise
- Change schedule from daily to weekly
- Add Docker ecosystem for base image updates

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Dan Guido
2025-12-14 19:58:02 -05:00
committed by GitHub
co-authored by Claude Opus 4.5
parent fd0ab40421
commit 0d314ea631
+22 -2
View File
@@ -5,7 +5,13 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
cooldown:
default-days: 7
groups:
github-actions:
patterns:
- "*"
# Maintain dependencies for Python using uv
# Using "uv" ecosystem ensures both pyproject.toml AND uv.lock are updated together
@@ -13,4 +19,18 @@ updates:
- package-ecosystem: "uv"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
cooldown:
default-days: 7
groups:
python:
patterns:
- "*"
# Maintain Docker base image (python:3.12-alpine)
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
cooldown:
default-days: 7