This repository was archived by the owner on Nov 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 1111env :
1212 # Common versions
1313 GO_VERSION : ' 1.17'
14- GOLANGCI_VERSION : ' v1.48 .0'
14+ GOLANGCI_VERSION : ' v1.18 .0'
1515
1616jobs :
1717 check-license :
1818 runs-on : ubuntu-latest
1919 steps :
2020 - name : Checkout
21- uses : actions/checkout@v2
21+ uses : actions/checkout@v3
2222 - name : Run Check License
2323 run : hack/make-rules/check_license.sh
2424
2828 - name : Checkout
2929 uses : actions/setup-go@v3
3030 with :
31- submodules : true
31+ submodules :
3232 - name : Setup Go
3333 uses : actions/checkout@v3
3434 with :
@@ -54,17 +54,17 @@ jobs:
5454 build-and-test :
5555 runs-on : ubuntu-latest
5656 steps :
57- - uses : actions/checkout@v2
57+ - uses : actions/checkout@v3
5858 with :
5959 submodules : true
6060 - name : Fetch History
6161 run : git fetch --prune --unshallow
6262 - name : Setup Go
63- uses : actions/setup-go@v2
63+ uses : actions/setup-go@v3
6464 with :
6565 go-version : ${{ env.GO_VERSION }}
6666 - name : Cache Go Dependencies
67- uses : actions/cache@v2
67+ uses : actions/cache@v3
6868 with :
6969 path : ~/go/pkg/mod
7070 key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
7474 - name : Run test
7575 run : make test
7676 - name : Upload test coverage
77- uses : codecov/codecov-action@v2
77+ uses : codecov/codecov-action@v3
7878 with :
7979 token : ${{ secrets.CODECOV_TOKEN }}
8080 files : cover.out
You can’t perform that action at this time.
0 commit comments