Skip to content

Commit fc0a37f

Browse files
committed
Enable Dependabot for Wwrokflow updates
We want to be notified if - used GitHub actions and - used baes images in the workflow are outdated. We are not sure if it will work. This is a first try. The docker ecosystem is configured globaly because we may use containers outside workflows and we hope that Dependabot searches recursive. We are also not sure if Dependabot recognizes the image tag in the workflow YAML as Docker dependency. Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent a50f3ff commit fc0a37f

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@
55

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

0 commit comments

Comments
 (0)