Skip to content

Commit fcff3aa

Browse files
committed
fix: update GitHub Actions workflow to use Go 1.24
- Update actions/setup-go from v4 to v5 - Update go-version from 1.20 to 1.24 - Fixes CI build failure due to go.mod version mismatch
1 parent de37c75 commit fcff3aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
- uses: actions/checkout@v4
1818

1919
- name: Set up Go
20-
uses: actions/setup-go@v4
20+
uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.20'
22+
go-version: '1.24'
2323

2424
- name: Build
2525
run: go build -v ./...

0 commit comments

Comments
 (0)