42
42
with :
43
43
go-version : 1.15.1
44
44
- name : Cache Go modules
45
- uses : actions/cache@v2
45
+ uses : actions/cache@v3
46
46
with :
47
47
path : ~/go/pkg/mod
48
48
key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -101,7 +101,7 @@ jobs:
101
101
uses : actions/setup-go@v3
102
102
with :
103
103
go-version : ${{ matrix.golang }}
104
- - uses : actions/cache@v2
104
+ - uses : actions/cache@v3
105
105
with :
106
106
path : ~/go/pkg/mod
107
107
key : ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -117,7 +117,7 @@ jobs:
117
117
git --no-pager diff go.mod go.sum
118
118
git --no-pager diff --quiet go.mod go.sum
119
119
- name : Upload coverage to Codecov
120
- uses : codecov/codecov-action@v2.1 .0
120
+ uses : codecov/codecov-action@v3.0 .0
121
121
with :
122
122
# token: ${{ secrets.CODECOV_TOKEN }}
123
123
file : ./coverage.txt
@@ -143,7 +143,7 @@ jobs:
143
143
uses : actions/setup-go@v3
144
144
with :
145
145
go-version : ${{ matrix.golang }}
146
- - uses : actions/cache@v2
146
+ - uses : actions/cache@v3
147
147
with :
148
148
path : ~/go/pkg/mod
149
149
key : ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -159,7 +159,7 @@ jobs:
159
159
- name : Run tests on Unix-like operating systems
160
160
run : make unittest
161
161
- name : Upload coverage to Codecov
162
- uses : codecov/codecov-action@v2.1 .0
162
+ uses : codecov/codecov-action@v3.0 .0
163
163
with :
164
164
# token: ${{ secrets.CODECOV_TOKEN }}
165
165
file : ./coverage.txt
0 commit comments