Skip to content

Commit bf67bfd

Browse files
build(deps): bump actions/cache from 2 to 3
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 75c8e17 commit bf67bfd

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
go-version: ${{ env.GO_VERSION }}
1919
- uses: actions/checkout@v2
20-
- uses: actions/cache@v2
20+
- uses: actions/cache@v3
2121
with:
2222
path: |
2323
~/go/pkg/mod
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
go-version: ${{ env.GO_VERSION }}
4141
- uses: actions/checkout@v2
42-
- uses: actions/cache@v2
42+
- uses: actions/cache@v3
4343
with:
4444
path: |
4545
~/go/pkg/mod
@@ -63,7 +63,7 @@ jobs:
6363
with:
6464
go-version: ${{ env.GO_VERSION }}
6565
- uses: actions/checkout@v2
66-
- uses: actions/cache@v2
66+
- uses: actions/cache@v3
6767
with:
6868
path: |
6969
~/go/pkg/mod
@@ -84,7 +84,7 @@ jobs:
8484
with:
8585
go-version: ${{ env.GO_VERSION }}
8686
- uses: actions/checkout@v2
87-
- uses: actions/cache@v2
87+
- uses: actions/cache@v3
8888
with:
8989
path: |
9090
~/go/pkg/mod
@@ -108,7 +108,7 @@ jobs:
108108
with:
109109
go-version: ${{ env.GO_VERSION }}
110110
- uses: actions/checkout@v2
111-
- uses: actions/cache@v2
111+
- uses: actions/cache@v3
112112
with:
113113
path: |
114114
~/go/pkg/mod

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
go-version: ${{ env.GO_VERSION }}
1919
- uses: actions/checkout@v2
20-
- uses: actions/cache@v2
20+
- uses: actions/cache@v3
2121
with:
2222
path: |
2323
~/go/pkg/mod
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ubuntu-latest
5151
steps:
5252
- uses: actions/checkout@v2
53-
- uses: actions/cache@v2
53+
- uses: actions/cache@v3
5454
with:
5555
path: |
5656
~/go/pkg/mod
@@ -235,7 +235,7 @@ jobs:
235235
with:
236236
go-version: ${{ env.GO_VERSION }}
237237
- uses: actions/checkout@v2
238-
- uses: actions/cache@v2
238+
- uses: actions/cache@v3
239239
with:
240240
path: |
241241
~/go/pkg/mod
@@ -275,7 +275,7 @@ jobs:
275275
with:
276276
fetch-depth: 0
277277
token: ${{ secrets.GH_TOKEN }}
278-
- uses: actions/cache@v2
278+
- uses: actions/cache@v3
279279
with:
280280
path: |
281281
~/go/pkg/mod
@@ -303,7 +303,7 @@ jobs:
303303
with:
304304
fetch-depth: 0
305305
token: ${{ secrets.GH_TOKEN }}
306-
- uses: actions/cache@v2
306+
- uses: actions/cache@v3
307307
with:
308308
path: |
309309
~/go/pkg/mod
@@ -329,7 +329,7 @@ jobs:
329329
with:
330330
fetch-depth: 0
331331
token: ${{ secrets.GH_TOKEN }}
332-
- uses: actions/cache@v2
332+
- uses: actions/cache@v3
333333
with:
334334
path: |
335335
~/go/pkg/mod

.github/workflows/verify.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/setup-go@v2
5858
with:
5959
go-version: ${{ env.GO_VERSION }}
60-
- uses: actions/cache@v2
60+
- uses: actions/cache@v3
6161
with:
6262
path: ~/go/pkg/mod
6363
key: go-${{ hashFiles('**/go.sum') }}
@@ -71,7 +71,7 @@ jobs:
7171
- uses: actions/setup-go@v2
7272
with:
7373
go-version: ${{ env.GO_VERSION }}
74-
- uses: actions/cache@v2
74+
- uses: actions/cache@v3
7575
with:
7676
path: ~/go/pkg/mod
7777
key: go-${{ hashFiles('**/go.sum') }}
@@ -85,7 +85,7 @@ jobs:
8585
- uses: actions/setup-go@v2
8686
with:
8787
go-version: ${{ env.GO_VERSION }}
88-
- uses: actions/cache@v2
88+
- uses: actions/cache@v3
8989
with:
9090
path: ~/go/pkg/mod
9191
key: go-${{ hashFiles('**/go.sum') }}
@@ -109,7 +109,7 @@ jobs:
109109
- uses: actions/setup-go@v2
110110
with:
111111
go-version: ${{ env.GO_VERSION }}
112-
- uses: actions/cache@v2
112+
- uses: actions/cache@v3
113113
with:
114114
path: ~/go/pkg/mod
115115
key: go-verify-dependencies-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)