File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 2626 - uses : actions/checkout@v4
2727 - run : go version
2828 - uses : actions/setup-go@v5
29+ with :
30+ go-version-file : ./go.mod
2931 - run : ./ci/lint.sh
3032
3133 test :
4244 with :
4345 go-version-file : ./go.mod
4446 - run : ./ci/test.sh
45- - uses : actions/upload-artifact@v3
47+ - uses : actions/upload-artifact@v4
4648 with :
4749 name : coverage.html
4850 path : ./ci/out/coverage.html
Original file line number Diff line number Diff line change 3030 with :
3131 go-version-file : ./go.mod
3232 - run : AUTOBAHN=1 ./ci/test.sh
33- - uses : actions/upload-artifact@v3
33+ - uses : actions/upload-artifact@v4
3434 with :
3535 name : coverage.html
3636 path : ./ci/out/coverage.html
6060 with :
6161 go-version-file : ./go.mod
6262 - run : AUTOBAHN=1 ./ci/test.sh
63- - uses : actions/upload-artifact@v3
63+ - uses : actions/upload-artifact@v4
6464 with :
6565 name : coverage-dev.html
6666 path : ./ci/out/coverage.html
Original file line number Diff line number Diff line change 11#! /bin/sh
2+ set -x
23set -eu
34cd -- " $( dirname " $0 " ) /.."
45
56go vet ./...
67GOOS=js GOARCH=wasm go vet ./...
78
8- go install honnef.co/go/tools/cmd/staticcheck@latest
9+ go install honnef.co/go/tools/cmd/staticcheck@v0.4.7
910staticcheck ./...
1011GOOS=js GOARCH=wasm staticcheck ./...
1112
@@ -15,7 +16,7 @@ govulncheck() {
1516cat " $tmpf "
1617fi
1718}
18- go install golang.org/x/vuln/cmd/govulncheck@latest
19+ go install golang.org/x/vuln/cmd/govulncheck@v1.1.1
1920govulncheck ./...
2021GOOS=js GOARCH=wasm govulncheck ./...
2122
You can’t perform that action at this time.
0 commit comments