Skip to content

Commit

Permalink
Merge pull request #7632 from sbueringer/pr-automate-dep-bump
Browse files Browse the repository at this point in the history
🌱 Automate go dependency bumps (except CR/k8s.io)
  • Loading branch information
k8s-ci-robot authored Nov 29, 2022
2 parents 13616a3 + ce27d24 commit bbe769e
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand All @@ -8,13 +11,20 @@ updates:
prefix: ":seedling:"
labels:
- "ok-to-test"
# Go
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
allow:
- dependency-name: "github.com/coredns/corefile-migration"
ignore:
# Ignore controller-runtime as its upgraded manually.
- dependency-name: "sigs.k8s.io/controller-runtime"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
- dependency-name: "go.etcd.io/*"
- dependency-name: "google.golang.org/grpc"
commit-message:
prefix: ":seedling:"
labels:
- "ok-to-test"
- "ok-to-test"

0 comments on commit bbe769e

Please sign in to comment.