Skip to content
This repository has been archived by the owner on Aug 18, 2023. It is now read-only.

Commit

Permalink
Update project to Go 1.20 series
Browse files Browse the repository at this point in the history
- update Go module version from Go 1.19 to 1.20
- update Dependabot configuration for Dockerfile to ignore Go releases
  outside of the Go 1.20 release series
- update "Canary" Dockerfile to reflect one release back from latest
  release in Go 1.20 series
  - confirm that Dependabot configuration changes are working as
    intended
  • Loading branch information
atc0005 committed Aug 16, 2023
1 parent 5f794b3 commit 7248ace
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.20"
- "< 1.19"
- ">= 1.21"
- "< 1.20"

- 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 @@ -14,4 +14,4 @@
# binaries) to reflect that version of Go.

# https://hub.docker.com/_/golang
FROM golang:1.19.12
FROM golang:1.20.6
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

module github.com/atc0005/bounce

go 1.19
go 1.20

// $ go list -m -versions github.com/apex/log
// github.com/apex/log v1.0.0 v1.1.0 v1.1.1 v1.1.2
Expand Down

0 comments on commit 7248ace

Please sign in to comment.