Skip to content

Commit 9d1529c

Browse files
committed
chore(deps): update all
1 parent 807610b commit 9d1529c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/go.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
go-version: 1.15.1
4444
- name: Cache Go modules
45-
uses: actions/cache@v2
45+
uses: actions/cache@v3
4646
with:
4747
path: ~/go/pkg/mod
4848
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -101,7 +101,7 @@ jobs:
101101
uses: actions/setup-go@v3
102102
with:
103103
go-version: ${{ matrix.golang }}
104-
- uses: actions/cache@v2
104+
- uses: actions/cache@v3
105105
with:
106106
path: ~/go/pkg/mod
107107
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -117,7 +117,7 @@ jobs:
117117
git --no-pager diff go.mod go.sum
118118
git --no-pager diff --quiet go.mod go.sum
119119
- name: Upload coverage to Codecov
120-
uses: codecov/codecov-action@v2.1.0
120+
uses: codecov/codecov-action@v3.0.0
121121
with:
122122
#token: ${{ secrets.CODECOV_TOKEN }}
123123
file: ./coverage.txt
@@ -143,7 +143,7 @@ jobs:
143143
uses: actions/setup-go@v3
144144
with:
145145
go-version: ${{ matrix.golang }}
146-
- uses: actions/cache@v2
146+
- uses: actions/cache@v3
147147
with:
148148
path: ~/go/pkg/mod
149149
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -159,7 +159,7 @@ jobs:
159159
- name: Run tests on Unix-like operating systems
160160
run: make unittest
161161
- name: Upload coverage to Codecov
162-
uses: codecov/codecov-action@v2.1.0
162+
uses: codecov/codecov-action@v3.0.0
163163
with:
164164
#token: ${{ secrets.CODECOV_TOKEN }}
165165
file: ./coverage.txt

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
-
3131
name: Cache Go modules
3232
if: steps.semantic.outputs.new-release-published == 'true'
33-
uses: actions/cache@v2
33+
uses: actions/cache@v3
3434
with:
3535
path: ~/go/pkg/mod
3636
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)