Skip to content

Commit

Permalink
chore: add dependabot go.mod check on ./test
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Salas <carlos.salas@suse.com>
  • Loading branch information
salasberryfin committed Sep 27, 2023
1 parent a62d4c1 commit a82717f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
version: 2
updates:
# Main Go module
- package-ecosystem: "gomod"
directory: "/"
schedule:
Expand All @@ -17,6 +18,24 @@ updates:
- dependency-name: "k8s.io/*"
- dependency-name: "go.etcd.io/*"
- dependency-name: "google.golang.org/grpc"
# Test Go module
- package-ecosystem: "gomod"
directory: "/test"
schedule:
interval: "weekly"
labels:
- "kind/cleanup"
- "area/dependency"
ignore:
# Ignore Cluster-API as its upgraded manually.
- dependency-name: "sigs.k8s.io/cluster-api"
# 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"
- package-ecosystem: "docker"
directory: "/"
schedule:
Expand Down

0 comments on commit a82717f

Please sign in to comment.