Skip to content

Commit

Permalink
Merge pull request #155 from salasberryfin/add-dependabot-check-on-test
Browse files Browse the repository at this point in the history
🌱 chore: add dependabot go.mod check on ./test
  • Loading branch information
richardcase authored Sep 28, 2023
2 parents 4d2cfcc + a82717f commit 521c8e6
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 521c8e6

Please sign in to comment.