Skip to content

Commit d0a67cf

Browse files
committed
Add dependabot configuration to ignore Go minor updates
This change adds dependabot configuration to ignore Go major and minor updates. This is to keep the container image aligned with the version used by the release pipeline. A major update should not occur. Signed-off-by: Austin Vazquez <[email protected]>
1 parent 0fc1d82 commit d0a67cf

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,17 @@ updates:
2828
- dependency-name: "google.golang.org/grpc"
2929
- dependency-name: "k8s.io/*"
3030

31-
# Automatic upgrade for base images used in the Dockerfile
31+
# Automatic update for base images used in the Dockerfile
3232
- package-ecosystem: "docker"
3333
directory: "/"
3434
schedule:
3535
interval: "daily"
36+
ignore:
37+
# Skip major and minor updates for the base Go image.
38+
# Major updates should not occur.
39+
# Minor updates for the Go toolchain should be done manually to be aligned with release CI.
40+
- dependency-name: "docker/library/golang"
41+
update-types: ["version-update:semver-major", "version-update:semver-minor"]
3642

3743
# Automatic upgrade for Github Actions
3844
- package-ecosystem: "github-actions"

0 commit comments

Comments
 (0)