Skip to content

Commit bbfc8fb

Browse files
authored
Add Dependabot configuration for automated dependency updates (#22)
Configure Dependabot to automatically check for updates to GitHub Actions and Cargo dependencies on a weekly schedule. This will help maintain security and keep dependencies current by creating pull requests for available updates. The configuration enables: - GitHub Actions dependency updates from the root directory - Rust/Cargo dependency updates from the root directory - Weekly update schedule for both ecosystems This automation reduces maintenance burden and improves security posture by ensuring timely dependency updates.
2 parents a0713a6 + 036716c commit bbfc8fb

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
- package-ecosystem: "cargo"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"

0 commit comments

Comments
 (0)