Skip to content

Commit 7ca5456

Browse files
committed
Enable dependabot
This should enable a bot that auto-creates PRs to update dependencies. For more info, see https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically Once enabled, dependabot work should be seen at https://github.com/opencontainers/runc/network/updates (as well as new PRs). Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
1 parent 3a0234e commit 7ca5456

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/dependabot.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Please see the documentation for all configuration options:
2+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3+
4+
version: 2
5+
updates:
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"

0 commit comments

Comments
 (0)