Skip to content

Commit

Permalink
Update project to Go 1.21 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.21 release series
- update "Canary" Dockerfile to reflect one release back from latest
  release in Go 1.21 series
  - confirm that Dependabot configuration changes are working as
    intended

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.

Refs:

- atc0005/todo#71
  • Loading branch information
atc0005 committed Feb 21, 2024
1 parent 884067d commit 8a4ed3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ updates:
ignore:
- dependency-name: "golang"
versions:
- ">= 1.21"
- "< 1.20"
- ">= 1.22"
- "< 1.21"

- package-ecosystem: docker
directory: "/dependabot/docker/go"
Expand Down
2 changes: 1 addition & 1 deletion dependabot/docker/go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# binaries) to reflect that version of Go.

# https://hub.docker.com/_/golang
FROM golang:1.20.14
FROM golang:1.21.6

0 comments on commit 8a4ed3e

Please sign in to comment.