Skip to content

Commit 41b41c3

Browse files
chore(deps): update actions/cache action to v6 (#367)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8257d86 commit 41b41c3

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT
4242

4343
- name: Cache the Go Build Cache
44-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
44+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
4545
with:
4646
path: ${{ steps.go.outputs.cache }}
4747
key: ${{ runner.os }}-build-check-diff-${{ hashFiles('**/go.sum') }}
4848
restore-keys: ${{ runner.os }}-build-check-diff-
4949

5050
- name: Cache Go Dependencies
51-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
51+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
5252
with:
5353
path: .work/pkg
5454
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
@@ -95,14 +95,14 @@ jobs:
9595
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT
9696

9797
- name: Cache the Go Build Cache
98-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
98+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
9999
with:
100100
path: ${{ steps.go.outputs.cache }}
101101
key: ${{ runner.os }}-build-lint-${{ hashFiles('**/go.sum') }}
102102
restore-keys: ${{ runner.os }}-build-lint-
103103

104104
- name: Cache Go Dependencies
105-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
105+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
106106
with:
107107
path: .work/pkg
108108
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
@@ -164,14 +164,14 @@ jobs:
164164
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT
165165

166166
- name: Cache the Go Build Cache
167-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
167+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
168168
with:
169169
path: ${{ steps.go.outputs.cache }}
170170
key: ${{ runner.os }}-build-unit-tests-${{ hashFiles('**/go.sum') }}
171171
restore-keys: ${{ runner.os }}-build-unit-tests-
172172

173173
- name: Cache Go Dependencies
174-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
174+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
175175
with:
176176
path: .work/pkg
177177
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
@@ -223,14 +223,14 @@ jobs:
223223
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT
224224

225225
- name: Cache the Go Build Cache
226-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
226+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
227227
with:
228228
path: ${{ steps.go.outputs.cache }}
229229
key: ${{ runner.os }}-build-e2e-tests-${{ hashFiles('**/go.sum') }}
230230
restore-keys: ${{ runner.os }}-build-e2e-tests-
231231

232232
- name: Cache Go Dependencies
233-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
233+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
234234
with:
235235
path: .work/pkg
236236
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
@@ -295,14 +295,14 @@ jobs:
295295
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT
296296

297297
- name: Cache the Go Build Cache
298-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
298+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
299299
with:
300300
path: ${{ steps.go.outputs.cache }}
301301
key: ${{ runner.os }}-build-publish-artifacts-${{ hashFiles('**/go.sum') }}
302302
restore-keys: ${{ runner.os }}-build-publish-artifacts-
303303

304304
- name: Cache Go Dependencies
305-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
305+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
306306
with:
307307
path: .work/pkg
308308
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)