Skip to content

Commit 500e849

Browse files
committed
ci: update CI workflows for Go and GitHub actions
- Update GoReleaser action from version 5 to version 6 - Update golangci-lint action from version 4 to version 6 - Add support for Go version 1.23 in the testing workflow Signed-off-by: appleboy <[email protected]>
1 parent 3e8755b commit 500e849

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
check-latest: true
2525

2626
- name: Run GoReleaser
27-
uses: goreleaser/goreleaser-action@v5
27+
uses: goreleaser/goreleaser-action@v6
2828
with:
2929
# either 'goreleaser' (default) or 'goreleaser-pro'
3030
distribution: goreleaser

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
go-version-file: go.mod
2929
check-latest: true
3030
- name: Setup golangci-lint
31-
uses: golangci/golangci-lint-action@v4
31+
uses: golangci/golangci-lint-action@v6
3232
with:
3333
version: latest
3434
args: --verbose
@@ -41,7 +41,7 @@ jobs:
4141
strategy:
4242
matrix:
4343
os: [ubuntu-latest]
44-
go: [1.21, 1.22]
44+
go: [1.21, 1.22, 1.23]
4545
include:
4646
- os: ubuntu-latest
4747
go-build: ~/.cache/go-build

0 commit comments

Comments
 (0)