Skip to content

Commit 93b1ebf

Browse files
⬆️ 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 4370c66 commit 93b1ebf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v3
3232

3333
- name: Cache Go tests
34-
uses: actions/cache@v2
34+
uses: actions/cache@v3
3535
with:
3636
path: |
3737
$(go env GOCACHE)

.github/workflows/go_cross.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
#go env -w GOCACHE= ${{matrix.os.gocache}}
6060

6161
- name: Cache Go tests
62-
uses: actions/cache@v2
62+
uses: actions/cache@v3
6363
with:
6464
path: |
6565
$(go env GOCACHE)

.github/workflows/go_fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v3
3232

3333
- name: Cache Go tests
34-
uses: actions/cache@v2
34+
uses: actions/cache@v3
3535
with:
3636
path: |
3737
$(go env GOCACHE)

0 commit comments

Comments
 (0)