Skip to content

Commit

Permalink
Go 1.23 is out, adopt it
Browse files Browse the repository at this point in the history
Also drop Go 1.21
  • Loading branch information
fsouza committed Aug 14, 2024
1 parent 77c98ba commit 855884b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- uses: actions/setup-go@v5.0.2
with:
go-version: "1.22"
go-version: "1.23"

- uses: goreleaser/goreleaser-action@v6.0.0
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: actions/setup-go@v5.0.2
with:
go-version: "1.22"
go-version: "1.23"

- uses: goreleaser/goreleaser-action@v6.0.0
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
strategy:
matrix:
go_version:
- "1.21"
- "1.22"
- "1.23"
os:
- macos
- ubuntu
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- uses: actions/setup-go@v5.0.2
id: go
with:
go-version: "1.22"
go-version: "1.23"

- run: |
go install honnef.co/go/tools/cmd/staticcheck@master
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- uses: actions/setup-go@v5.0.2
id: go
with:
go-version: "1.22"
go-version: "1.23"

- name: go-build
run: go build -o fake-gcs-server
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
docker-image: node:20-alpine
entrypoint: /bin/sh
- lang: go
docker-image: golang:1.22-alpine
docker-image: golang:1.23-alpine
entrypoint: /bin/sh
- lang: dotnet
docker-image: mcr.microsoft.com/dotnet/sdk:5.0-alpine
Expand Down
2 changes: 1 addition & 1 deletion examples/go/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/fsouza/fake-gcs-server/examples/go-example

go 1.22
go 1.23

require (
cloud.google.com/go/storage v1.43.0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ require (
gopkg.in/yaml.v3 v3.0.1 // indirect
)

go 1.21
go 1.22

0 comments on commit 855884b

Please sign in to comment.