Skip to content

Commit a8b275e

Browse files
authored
Add Docker and GitHub Actions to Dependabot config (#96)
The existing Dependabot configuration only tracked Go module updates, leaving Docker base images and GitHub Actions workflow files without automated update notifications. Add weekly update schedules for both ecosystems so that the ceph/ceph container base image and shared CI actions stay up to date.
1 parent ef5db0a commit a8b275e

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,17 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "gomod" # See documentation for possible values
9-
directory: "/" # Location of package manifests
8+
- package-ecosystem: "gomod"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
13+
- package-ecosystem: "docker"
14+
directory: "/"
15+
schedule:
16+
interval: "weekly"
17+
18+
- package-ecosystem: "github-actions"
19+
directory: "/"
1020
schedule:
1121
interval: "weekly"

0 commit comments

Comments
 (0)