Skip to content

Commit b8c56e9

Browse files
kevinelliottclaude
andcommitted
fix: update GitHub Actions to use Go 1.24
- Update test workflow to use Go 1.24 - Update lint workflow to use Go 1.24 - Update release workflow to use Go 1.24 - Matches the Go 1.24.0 requirement in go.mod 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 9d071a1 commit b8c56e9

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Set up Go
5959
uses: actions/setup-go@v6
6060
with:
61-
go-version: '1.21'
61+
go-version: '1.24'
6262

6363
- name: Get version
6464
id: get_version

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest, macos-latest, windows-latest]
21-
go: ['1.21', '1.22']
21+
go: ['1.24']
2222

2323
steps:
2424
- name: Checkout code
@@ -60,7 +60,7 @@ jobs:
6060
- name: Set up Go
6161
uses: actions/setup-go@v6
6262
with:
63-
go-version: '1.21'
63+
go-version: '1.24'
6464

6565
- name: Run golangci-lint
6666
uses: golangci/golangci-lint-action@v3

mise.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[tools]
2+
go = "latest"

0 commit comments

Comments
 (0)