Skip to content

Commit 0d314ea

Browse files
dguidoclaude
andauthored
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>
1 parent fd0ab40 commit 0d314ea

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

.github/dependabot.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,32 @@ updates:
55
- package-ecosystem: "github-actions"
66
directory: "/"
77
schedule:
8-
interval: "daily"
8+
interval: "weekly"
9+
cooldown:
10+
default-days: 7
11+
groups:
12+
github-actions:
13+
patterns:
14+
- "*"
915

1016
# Maintain dependencies for Python using uv
1117
# Using "uv" ecosystem ensures both pyproject.toml AND uv.lock are updated together
1218
# This prevents Docker build failures from lockfile mismatches
1319
- package-ecosystem: "uv"
1420
directory: "/"
1521
schedule:
16-
interval: "daily"
22+
interval: "weekly"
23+
cooldown:
24+
default-days: 7
25+
groups:
26+
python:
27+
patterns:
28+
- "*"
29+
30+
# Maintain Docker base image (python:3.12-alpine)
31+
- package-ecosystem: "docker"
32+
directory: "/"
33+
schedule:
34+
interval: "weekly"
35+
cooldown:
36+
default-days: 7

0 commit comments

Comments
 (0)