Skip to content

Commit 68dbc6c

Browse files
committed
Update project to Go 1.23 series
Update Dependabot configuration for Dockerfile to ignore Go releases outside of the Go 1.23 release series. We update previous match syntax to use x.y.Z syntax (vs just x.Y) in an effort to exclude future offerings of Go RC versions as a stable update. NOTE: We intentionally do *not* update the Go module version; bumping the Go module version would indicate that this project *requires* a newer Go version for functionality provided by that version (and that is not yet the case).
1 parent 70c450f commit 68dbc6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/dependabot.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ updates:
110110
ignore:
111111
- dependency-name: "golang"
112112
versions:
113-
- ">= 1.23.0"
114-
- "< 1.22.0"
113+
- ">= 1.24.0"
114+
- "< 1.23.0"
115115

116116
- package-ecosystem: docker
117117
directory: "/dependabot/docker/go"

0 commit comments

Comments
 (0)