Skip to content

Commit bbe769e

Browse files
authored
Merge pull request #7632 from sbueringer/pr-automate-dep-bump
🌱 Automate go dependency bumps (except CR/k8s.io)
2 parents 13616a3 + ce27d24 commit bbe769e

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
# Please see the documentation for all configuration options:
2+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
13
version: 2
24
updates:
5+
# GitHub Actions
36
- package-ecosystem: "github-actions"
47
directory: "/"
58
schedule:
@@ -8,13 +11,20 @@ updates:
811
prefix: ":seedling:"
912
labels:
1013
- "ok-to-test"
14+
# Go
1115
- package-ecosystem: "gomod"
1216
directory: "/"
1317
schedule:
1418
interval: "weekly"
15-
allow:
16-
- dependency-name: "github.com/coredns/corefile-migration"
19+
ignore:
20+
# Ignore controller-runtime as its upgraded manually.
21+
- dependency-name: "sigs.k8s.io/controller-runtime"
22+
# Ignore k8s and its transitives modules as they are upgraded manually
23+
# together with controller-runtime.
24+
- dependency-name: "k8s.io/*"
25+
- dependency-name: "go.etcd.io/*"
26+
- dependency-name: "google.golang.org/grpc"
1727
commit-message:
1828
prefix: ":seedling:"
1929
labels:
20-
- "ok-to-test"
30+
- "ok-to-test"

0 commit comments

Comments
 (0)