Skip to content

Commit

Permalink
feat: update to Go 1.19 (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
hf authored Oct 25, 2022
1 parent 437e683 commit e6525ab
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- uses: actions/setup-go@v3
with:
go-version: "^1.18.0" # The Go version to download (if necessary) and use.
go-version: "^1.19.0" # The Go version to download (if necessary) and use.

- run: make deps
- run: make all
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.18.x]
go-version: [1.19.x]
runs-on: ubuntu-20.04
services:
postgres:
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.18-alpine as build
FROM golang:1.19-alpine as build
ENV GO111MODULE=on
ENV CGO_ENABLED=0
ENV GOOS=linux
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18-alpine
FROM golang:1.19-alpine
ENV GO111MODULE=on
ENV CGO_ENABLED=0
ENV GOOS=linux
Expand Down
22 changes: 11 additions & 11 deletions docs/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
//
// Documentation of the gotrue API.
//
// Schemes: http, https
// BasePath: /
// Version: 1.0.0
// Host: localhost:9999
// Schemes: http, https
// BasePath: /
// Version: 1.0.0
// Host: localhost:9999
//
// SecurityDefinitions:
// bearer:
// type: apiKey
// name: Authentication
// in: header
// SecurityDefinitions:
// bearer:
// type: apiKey
// name: Authentication
// in: header
//
// Produces:
// - application/json
// Produces:
// - application/json
//
// swagger:meta
package docs
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@ require (
gopkg.in/yaml.v3 v3.0.1 // indirect
)

go 1.18
go 1.19

0 comments on commit e6525ab

Please sign in to comment.