Skip to content

Commit

Permalink
chore: update CI to run on latest Go
Browse files Browse the repository at this point in the history
lint jobs failing from not using loopvar which was removed in 1.23.
  • Loading branch information
sywhang committed Feb 6, 2025
1 parent 68f74d8 commit d794b99
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ 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
latest: true

steps:
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Load cached dependencies
uses: actions/cache@v1
Expand Down

0 comments on commit d794b99

Please sign in to comment.