Skip to content

Commit 7d767ed

Browse files
committed
fixing github workflow failures
1 parent a6998a0 commit 7d767ed

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
uses: actions/checkout@v3
2020

2121
- name: Setup go
22-
uses: actions/setup-go@v4
22+
uses: actions/setup-go@v5
2323
with:
24-
go-version: '1.20.x'
24+
go-version: '1.23.x'
2525

2626
- name: Install staticcheck
27-
run: go install honnef.co/go/tools/cmd/staticcheck@v0.5
27+
run: go install honnef.co/go/tools/cmd/staticcheck@latest
2828

2929
- name: Run staticcheck
3030
run: staticcheck ./...

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: Setup go
1717
uses: actions/setup-go@v5
1818
with:
19-
go-version: '1.20.x'
19+
go-version: '1.23.x'
2020

2121
- name: Install staticcheck
22-
run: go install honnef.co/go/tools/cmd/staticcheck@v0.5
22+
run: go install honnef.co/go/tools/cmd/staticcheck@latest
2323

2424
- name: Run staticcheck
2525
run: staticcheck ./...

0 commit comments

Comments
 (0)