Skip to content

Commit

Permalink
Update project to Go 1.22 series
Browse files Browse the repository at this point in the history
Update Dependabot configuration for Dockerfile to ignore Go releases
outside of the Go 1.22 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).
  • Loading branch information
atc0005 committed Aug 16, 2024
1 parent 36e20c0 commit 52f7d80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ updates:
ignore:
- dependency-name: "golang"
versions:
- ">= 1.22"
- "< 1.21"
- ">= 1.23.0"
- "< 1.22.0"

- package-ecosystem: docker
directory: "/dependabot/docker/go"
Expand Down

0 comments on commit 52f7d80

Please sign in to comment.