Skip to content

Commit e68a235

Browse files
Add initial Dependabot configuration
Introduces a basic dependabot.yml to enable automated dependency updates for Docker and GitHub Actions, scheduled weekly.
1 parent 4447aec commit e68a235

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

dependabot.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Basic `dependabot.yml` file with
2+
# minimum configuration for three package managers
3+
4+
version: 2
5+
updates:
6+
# Enable version updates for Docker
7+
- package-ecosystem: "docker"
8+
# Look for a `Dockerfile` in the `docker` directory and recursive subdirectories
9+
directories: "/docker/*"
10+
# Check for updates once a week
11+
schedule:
12+
interval: "weekly"
13+
14+
# Enable version updates for GitHub Actions
15+
- package-ecosystem: "github-actions"
16+
# Workflow files stored in the default location of `.github/workflows`
17+
# You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.
18+
directory: "/"
19+
schedule:
20+
interval: "weekly"
21+

0 commit comments

Comments
 (0)