...
1# Please see the documentation for all configuration options:
2# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3
4version: 2
5updates:
6 # Dependencies listed in go.mod
7 - package-ecosystem: "gomod"
8 directory: "/" # Location of package manifests
9 schedule:
10 interval: "daily"
11 ignore:
12 # a regression in v1.22.2, see https://github.com/urfave/cli/issues/1092
13 - dependency-name: "github.com/urfave/cli"
14
15 # Dependencies listed in .github/workflows/*.yml
16 - package-ecosystem: "github-actions"
17 directory: "/"
18 schedule:
19 interval: "daily"
20
21 # Dependencies listed in Dockerfile
22 - package-ecosystem: "docker"
23 directory: "/"
24 schedule:
25 interval: "daily"
View as plain text