Skip to content

Commit 3a9da6a

Browse files
authored
Configure Dependabot for npm and GitHub Actions
Added configuration for npm and GitHub Actions updates.
1 parent c0a9d68 commit 3a9da6a

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/dependabot.yml

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

0 commit comments

Comments
 (0)