Skip to content

Commit

Permalink
chore: bump go version to 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkofher committed Feb 18, 2023
1 parent b7b6932 commit b6b2d5b
Show file tree
Hide file tree
Showing 5 changed files with 463 additions and 140 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.16"]
go: ["1.19"]

steps:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: "1.19.6"

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
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

Expand Down
48 changes: 37 additions & 11 deletions go.mod
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
)
Loading

0 comments on commit b6b2d5b

Please sign in to comment.