Skip to content

Commit 046fceb

Browse files
authored
Update versions for linting (#143)
`make lint` is currently failing in CI, probably due to an old version of go or staticcheck.
1 parent cc9e2f8 commit 046fceb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/setup-go@v4
1111
with:
12-
go-version: '^1.15.0'
12+
go-version: '^1.23.0'
1313
- uses: actions/checkout@v3
1414
- run: make lint
1515
- run: make build

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ build:
1515
.PHONY: lint
1616
lint:
1717
go vet ${PROJECT}
18-
go install honnef.co/go/tools/cmd/staticcheck@v0.4.3
18+
go install honnef.co/go/tools/cmd/staticcheck@v0.5.0
1919
staticcheck ${PROJECT}
2020

2121
.PHONY: pre-commit

0 commit comments

Comments
 (0)