Skip to content

Commit 8ce8dea

Browse files
committed
Fix dependabot update targets
Without this change the indirect deps in cmd/go.mod were not being updated, which was causing our tests to fail. Signed-off-by: David Son <davbson@amazon.com>
1 parent 45a548c commit 8ce8dea

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/dependabot.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ updates:
33

44
# Automatic upgrade for go modules.
55
- package-ecosystem: "gomod"
6-
directories: ["/", "/cmd"]
6+
directories: "/"
77
groups:
88
go:
99
# Group all of our updates in one PR.
@@ -21,6 +21,22 @@ updates:
2121
- dependency-name: "github.com/awslabs/soci-snapshotter"
2222
- dependency-name: "google.golang.org/grpc"
2323
- dependency-name: "k8s.io/*"
24+
- package-ecosystem: "gomod"
25+
directories: "/cmd"
26+
groups:
27+
go:
28+
patterns:
29+
- '*'
30+
schedule:
31+
interval: "daily"
32+
ignore:
33+
# skip grpc because the current latest not compatible with containerd 1.7
34+
# skip k8s deps since they use the latest go version/features that may
35+
# not be in the go version soci uses
36+
- dependency-name: "github.com/awslabs/soci-snapshotter"
37+
- dependency-name: "google.golang.org/grpc"
38+
- dependency-name: "k8s.io/*"
39+
dependency-type: all
2440

2541
# Automatic update for base images used in the Dockerfile
2642
- package-ecosystem: "docker"

0 commit comments

Comments
 (0)