Skip to content

Commit 2fe2dcc

Browse files
Update to Go 1.24.2 and fix govulncheck path
1 parent 849e0c1 commit 2fe2dcc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ workflows:
99
jobs:
1010
build-and-test:
1111
docker:
12-
- image: cimg/go:1.24.0
12+
- image: cimg/go:1.24.2
1313
steps:
1414
- checkout
1515
- run: go vet ./...
1616
- run: go test ./...
1717
govulncheck:
1818
docker:
19-
- image: cimg/go:1.24.0
19+
- image: cimg/go:1.24.2
2020
steps:
2121
- checkout
2222
- run: go install golang.org/x/vuln/cmd/govulncheck@latest
23-
- run: govulncheck ./...
23+
- run: $(go env GOPATH)/bin/govulncheck ./...

0 commit comments

Comments
 (0)