Skip to content

Commit

Permalink
ci: Test with Go 1.23 (#1464)
Browse files Browse the repository at this point in the history
With the release of Go 1.23,
CI should run against Go 1.22 and 1.23

Signed-off-by: junya koyama <[email protected]>
  • Loading branch information
arukiidou authored Sep 13, 2024
1 parent d6b2d14 commit ede8e18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.21.x", "1.22.x"]
go: ["1.22.x", "1.23.x"]
include:
- go: 1.22.x
- go: 1.23.x

steps:
- name: Checkout code
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- uses: actions/setup-go@v5
name: Set up Go
with:
go-version: 1.22.x
go-version: 1.23.x
cache: false # managed by golangci-lint

- uses: golangci/golangci-lint-action@v6
Expand Down

0 comments on commit ede8e18

Please sign in to comment.