UNPKG

1.02 kBYAMLView Raw
1# To get started with Dependabot version updates, you'll need to specify which
2# package ecosystems to update and where the package manifests are located.
3# Please see the documentation for all configuration options:
4# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
6version: 2
7updates:
8 # Enable version updates for npm
9 - package-ecosystem: "npm"
10 # Look for `package.json` and `lock` files in the `root` directory
11 directory: "/"
12 # Check the npm registry for updates every day (weekdays)
13 schedule:
14 interval: "weekly"
15
16 - package-ecosystem: "gomod"
17 # Look for `package.json` and `lock` files in the `root` directory
18 directory: "/"
19 # Check the npm registry for updates every day (weekdays)
20 schedule:
21 interval: "weekly"
22
23 - package-ecosystem: "github-actions"
24 # Workflow files stored in the
25 # default location of `.github/workflows`
26 directory: "/"
27 schedule:
28 interval: "weekly"
29