File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed
Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 3030
3131 steps :
3232 - name : Checkout repository
33- uses : actions/checkout@v2
33+ uses : actions/checkout@v3
3434 with :
3535 # We must fetch at least the immediate parents so that if this is
3636 # a pull request then we can checkout the head.
Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ jobs:
2020 runs-on : ubuntu-latest
2121 steps :
2222 - name : Check out code
23- uses : actions/checkout@v2
23+ uses : actions/checkout@v3
2424
2525 - name : Set up Go 1.18
26- uses : actions/setup-go@v1
26+ uses : actions/setup-go@v3
2727 with :
2828 go-version : 1.18
2929
3030 - name : Run linter
31- uses : golangci/golangci-lint-action@v2 # Action page: <https://github.com/golangci/golangci-lint-action>
31+ uses : golangci/golangci-lint-action@v3.1.0 # Action page: <https://github.com/golangci/golangci-lint-action>
3232 with :
3333 version : v1.45 # without patch version
3434 only-new-issues : false # show only new issues if it's a pull request
Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ jobs:
2727 GO111MODULE : on
2828 steps :
2929 - name : Set up Go ${{ matrix.go }}
30- uses : actions/setup-go@v1
30+ uses : actions/setup-go@v3
3131 with :
3232 go-version : ${{ matrix.go }}
3333
3434 - name : Check out code
35- uses : actions/checkout@v2
35+ uses : actions/checkout@v3
3636 with :
3737 fetch-depth : 1
3838
5353 go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage-ci/disabled_vertices.txt -covermode=atomic ./tests/disabled_vertices
5454 cat ./coverage-ci/*.txt > ./coverage-ci/summary.txt
5555
56- - uses : codecov/codecov-action@v1 # Docs: <https://github.com/codecov/codecov-action>
56+ - uses : codecov/codecov-action@v2.1.0 # Docs: <https://github.com/codecov/codecov-action>
5757 if : ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }}
5858 with :
5959 token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ jobs:
2727 GO111MODULE : on
2828 steps :
2929 - name : Set up Go ${{ matrix.go }}
30- uses : actions/setup-go@v1
30+ uses : actions/setup-go@v3
3131 with :
3232 go-version : ${{ matrix.go }}
3333
3434 - name : Check out code
35- uses : actions/checkout@v2
35+ uses : actions/checkout@v3
3636 with :
3737 fetch-depth : 1
3838
Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ jobs:
2727 GO111MODULE : on
2828 steps :
2929 - name : Set up Go ${{ matrix.go }}
30- uses : actions/setup-go@v1
30+ uses : actions/setup-go@v3
3131 with :
3232 go-version : ${{ matrix.go }}
3333
3434 - name : Check out code
35- uses : actions/checkout@v2
35+ uses : actions/checkout@v3
3636 with :
3737 fetch-depth : 1
3838
You can’t perform that action at this time.
0 commit comments