-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Bump go version to 1.19 (#86)
Bump go version to 1.19
- Loading branch information
Showing
5 changed files
with
463 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go: ["1.16"] | ||
go: ["1.19"] | ||
|
||
steps: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.16-alpine | ||
FROM golang:1.19.6-alpine | ||
|
||
WORKDIR $GOPATH/bin | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,48 @@ | ||
module github.com/hakierspejs/long-season | ||
|
||
// +heroku goVersion go1.16 | ||
// +heroku goVersion go1.19 | ||
// +heroku install ./cmd/... | ||
|
||
go 1.16 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/alioygur/gores v1.2.1 | ||
github.com/cristalhq/jwt/v3 v3.0.4 | ||
github.com/alioygur/gores v1.2.2 | ||
github.com/cristalhq/jwt/v3 v3.1.0 | ||
github.com/go-chi/chi v4.1.2+incompatible | ||
github.com/go-chi/cors v1.1.1 | ||
github.com/golang-migrate/migrate/v4 v4.15.1 | ||
github.com/go-chi/cors v1.2.1 | ||
github.com/golang-migrate/migrate/v4 v4.15.2 | ||
github.com/google/uuid v1.3.0 | ||
github.com/matryer/is v1.4.0 | ||
github.com/pquerna/otp v1.3.0 | ||
github.com/pquerna/otp v1.4.0 | ||
github.com/thinkofher/horror v0.1.2 | ||
github.com/urfave/cli/v2 v2.3.0 | ||
go.etcd.io/bbolt v1.3.5 | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 | ||
modernc.org/sqlite v1.13.3 // indirect | ||
github.com/urfave/cli/v2 v2.24.4 | ||
go.etcd.io/bbolt v1.3.7 | ||
golang.org/x/crypto v0.6.0 | ||
modernc.org/sqlite v1.20.4 | ||
) | ||
|
||
require ( | ||
github.com/boombuler/barcode v1.0.1 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect | ||
go.uber.org/atomic v1.10.0 // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
lukechampine.com/uint128 v1.2.0 // indirect | ||
modernc.org/cc/v3 v3.40.0 // indirect | ||
modernc.org/ccgo/v3 v3.16.13 // indirect | ||
modernc.org/libc v1.22.2 // indirect | ||
modernc.org/mathutil v1.5.0 // indirect | ||
modernc.org/memory v1.5.0 // indirect | ||
modernc.org/opt v0.1.3 // indirect | ||
modernc.org/strutil v1.1.3 // indirect | ||
modernc.org/token v1.1.0 // indirect | ||
) |
Oops, something went wrong.