Skip to content
This repository was archived by the owner on Mar 15, 2025. It is now read-only.

Commit a7cbd35

Browse files
committed
update build pipeline for Go 1.24
1 parent 9008ccf commit a7cbd35

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/go.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,34 @@ jobs:
1111
verify:
1212
runs-on: ubuntu-latest
1313
steps:
14+
# https://github.com/actions/checkout
1415
- name: Checkout
1516
uses: actions/checkout@v4
1617

18+
# https://github.com/actions/setup-go
1719
- name: Set up Go
1820
uses: actions/setup-go@v5
1921
with:
20-
go-version: '1.23'
22+
go-version: '1.24'
2123

2224
- name: Verify Source
2325
run: hack/verify.sh
2426

2527
lint:
2628
runs-on: ubuntu-latest
2729
steps:
30+
# https://github.com/actions/checkout
2831
- name: Checkout
2932
uses: actions/checkout@v4
3033

34+
# https://github.com/actions/setup-go
3135
- name: Set up Go
3236
uses: actions/setup-go@v5
3337
with:
34-
go-version: '1.23'
38+
go-version: '1.24'
3539

40+
# https://github.com/golangci/golangci-lint-action
3641
- name: Run golangci-lint
3742
uses: golangci/golangci-lint-action@v6
3843
with:
39-
version: v1.58
44+
version: latest

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,17 @@ jobs:
2121
goreleaser:
2222
runs-on: ubuntu-latest
2323
steps:
24+
# https://github.com/actions/checkout
2425
- name: Checkout
2526
uses: actions/checkout@v4
2627

28+
# https://github.com/actions/setup-go
2729
- name: Set up Go
2830
uses: actions/setup-go@v5
2931
with:
30-
go-version: '1.23'
32+
go-version: '1.24'
3133

34+
# https://github.com/goreleaser/goreleaser-action
3235
- name: Run GoReleaser
3336
uses: goreleaser/goreleaser-action@v4
3437
with:

0 commit comments

Comments
 (0)