Skip to content

Commit b28f1d6

Browse files
committed
chore: updating dependabot to support GHA, cargo and docker packages
Signed-off-by: Rajpal Chauhan <[email protected]>
1 parent 76ed99d commit b28f1d6

File tree

1 file changed

+26
-4
lines changed

1 file changed

+26
-4
lines changed

.github/dependabot.yml

+26-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,32 @@ updates:
55
# Maintain dependencies for GitHub Actions
66
# - Check for updates once a week
77
# - Group all updates into a single PR
8-
- package-ecosystem: github-actions
9-
directory: /
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
1010
schedule:
11-
interval: weekly
11+
interval: "weekly"
1212
groups:
1313
all-actions:
14-
patterns: [ "*" ]
14+
patterns: [ "*" ]
15+
16+
# Maintain dependencies for Cargo Packages
17+
- package-ecosystem: "cargo"
18+
directory: "/"
19+
schedule:
20+
interval: "weekly"
21+
day: "monday"
22+
time: "04:00"
23+
timezone: "Canada/Pacific"
24+
ignore:
25+
- dependency-name: "*"
26+
update-types: ["version-update:semver-major"]
27+
28+
# Maintain dependencies for docker
29+
- package-ecosystem: "docker"
30+
directory: "/ci"
31+
schedule:
32+
interval: "weekly"
33+
day: "monday"
34+
time: "04:00"
35+
timezone: "Canada/Pacific"
36+

0 commit comments

Comments
 (0)