Skip to content

Commit c1c2113

Browse files
dguidoclaude
andcommitted
Add Dependabot configuration for automated dependency updates
Configure Dependabot to automatically check for updates to: - GitHub Actions (weekly) - Docker base images (weekly) This will help keep the repository's dependencies current and secure by creating automated pull requests when updates are available. 🤖 Generated with Claude Code https://claude.ai/code Co-Authored-By: Claude <[email protected]>
1 parent 78f2b0c commit c1c2113

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/dependabot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
updates:
3+
# Keep GitHub Actions up to date
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
commit-message:
9+
prefix: "ci"
10+
include: "scope"
11+
12+
# Keep Docker base images up to date
13+
- package-ecosystem: "docker"
14+
directory: "/"
15+
schedule:
16+
interval: "weekly"
17+
commit-message:
18+
prefix: "docker"
19+
include: "scope"

0 commit comments

Comments
 (0)