@@ -16,22 +16,22 @@ jobs:
1616 runs-on : ubuntu-latest
1717 steps :
1818 - name : Checkout Code
19- uses : actions/checkout@v2
19+ uses : actions/checkout@v3
2020
2121 - name : Set up Go
22- uses : actions/setup-go@v2
22+ uses : actions/setup-go@v3
2323 with :
2424 go-version : 1.19.x
2525
2626 - name : Cache
27- uses : actions/cache@v2
27+ uses : actions/cache@v3
2828 with :
2929 path : |
3030 ~/.cache/go-build
3131 ~/go/pkg/mod
3232 key : cache-go-${{ runner.os }}-1.15.x-${{ github.run_number }}
3333 restore-keys : |
34- cache-go-${{ runner.os}}-1.15 .x-
34+ cache-go-${{ runner.os}}-1.19 .x-
3535
3636 - name : Build
3737 run : make build-all
@@ -52,20 +52,20 @@ jobs:
5252 GO111MODULE : on
5353 strategy :
5454 matrix :
55- os : [ ubuntu-latest, macos-latest , windows-latest ]
56- go-version : [ 1.16.x, 1.17.x, 1.18.x, 1.19.x]
55+ os : [ubuntu-latest, macos-12 , windows-latest]
56+ go-version : [1.17.x, 1.18.x, 1.19.x]
5757 runs-on : ${{ matrix.os }}
5858 steps :
5959 - name : Checkout Code
60- uses : actions/checkout@v2
60+ uses : actions/checkout@v3
6161
6262 - name : Set up Go ${{ matrix.go-version}}
63- uses : actions/setup-go@v2
63+ uses : actions/setup-go@v3
6464 with :
6565 go-version : ${{ matrix.go-version}}
6666
6767 - name : Cache
68- uses : actions/cache@v2
68+ uses : actions/cache@v3
6969 with :
7070 path : |
7171 ~/.cache/go-build
8080 run : make test-v
8181
8282 - name : Upload coverage
83- uses : codecov/codecov-action@v1
83+ uses : codecov/codecov-action@v3
8484 with :
8585 token : ${{ secrets.CODECOV_TOKEN }}
8686 files : .testCoverage.txt
0 commit comments