File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1212 runs-on : ${{ matrix.platform }}
1313 steps :
1414 - name : Install Go
15- uses : actions/setup-go@v4
15+ uses : actions/setup-go@v5
1616 with :
1717 go-version : ${{ matrix.go-version }}
1818 - name : Install staticcheck
2525 run : echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
2626 shell : bash
2727 - name : Checkout code
28- uses : actions/checkout@v3
28+ uses : actions/checkout@v4
2929 - name : Fmt
3030 if : matrix.platform != 'windows-latest' # :(
3131 run : " diff <(gofmt -d .) <(printf '')"
3939 - name : Test
4040 run : go test -race ./... -coverpkg=./... -coverprofile=coverage.txt -covermode=atomic
4141 - name : Upload coverage reports to Codecov
42- uses : codecov/codecov-action@v4.0.1
42+ uses : codecov/codecov-action@v4.5.0
4343 with :
4444 token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments