Skip to content

Commit fe9c3b9

Browse files
Bump actions/cache from 2 to 3 (#183)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent feea216 commit fe9c3b9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/buildimage.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ jobs:
5353
5454
- name: Go Build Cache
5555
id: build-cache
56-
uses: actions/cache@v2
56+
uses: actions/cache@v3
5757
with:
5858
path: ${{ steps.go-cache-paths.outputs.go-build }}
5959
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
6060

6161
- name: Go Mod Cache
6262
id: mod-cache
63-
uses: actions/cache@v2
63+
uses: actions/cache@v3
6464
with:
6565
path: ${{ steps.go-cache-paths.outputs.go-mod }}
6666
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
@@ -185,14 +185,14 @@ jobs:
185185
186186
- name: Go Build Cache
187187
id: build-cache
188-
uses: actions/cache@v2
188+
uses: actions/cache@v3
189189
with:
190190
path: ${{ steps.go-cache-paths.outputs.go-build }}
191191
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
192192

193193
- name: Go Mod Cache
194194
id: mod-cache
195-
uses: actions/cache@v2
195+
uses: actions/cache@v3
196196
with:
197197
path: ${{ steps.go-cache-paths.outputs.go-mod }}
198198
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)