Skip to content

Commit 6d01329

Browse files
committed
Update release workflow to Go 1.24 and latest action versions
go.mod requires 1.24.0 but workflow had Go 1.20 which can't parse that version format. Also bump checkout to v4, setup-go to v5, and goreleaser-action to v6.
1 parent 3728b29 commit 6d01329

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
19-
19+
2020
- name: Set up Go
21-
uses: actions/setup-go@v4
21+
uses: actions/setup-go@v5
2222
with:
23-
go-version: '1.20'
24-
23+
go-version: '1.24'
24+
2525
- name: Run GoReleaser
26-
uses: goreleaser/goreleaser-action@v4
26+
uses: goreleaser/goreleaser-action@v6
2727
with:
2828
version: latest
2929
args: release --clean

0 commit comments

Comments
 (0)