Skip to content

Commit ea23016

Browse files
ci: enable dependabot (#37)
1 parent ec6035f commit ea23016

File tree

2 files changed

+403
-238
lines changed

2 files changed

+403
-238
lines changed

.github/dependabot.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Keep GitHub Actions up to date with GitHub's Dependabot...
2+
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
3+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem
4+
version: 2
5+
updates:
6+
- package-ecosystem: github-actions
7+
directory: /
8+
groups:
9+
github-actions:
10+
patterns:
11+
- "*" # Group all Actions updates into a single larger pull request
12+
schedule:
13+
interval: weekly
14+
day: "thursday"
15+
time: "08:00"
16+
timezone: "America/New_York"
17+
- package-ecosystem: cargo
18+
directory: /
19+
schedule:
20+
interval: weekly
21+
day: "thursday"
22+
time: "08:00"
23+
timezone: "America/New_York"
24+
- package-ecosystem: docker
25+
directory: docker
26+
schedule:
27+
interval: weekly
28+
day: "thursday"
29+
time: "08:00"
30+
timezone: "America/New_York"

0 commit comments

Comments
 (0)