Skip to content

Commit 0112976

Browse files
authored
Merge pull request #199 from redhat-cop/renovate/actions-cache-digest
Update actions/cache digest to cdf6c1f
2 parents 641a1dc + 0ece3a1 commit 0112976

2 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/pr-operator.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,13 @@ jobs:
133133
cache: false
134134

135135
- name: Go Build Cache
136-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
136+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
137137
with:
138138
path: ${{ steps.go-cache-paths.outputs.go-build }}
139139
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
140140

141141
- name: Go Mod Cache
142-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
142+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
143143
with:
144144
path: ${{ steps.go-cache-paths.outputs.go-mod }}
145145
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
@@ -212,13 +212,13 @@ jobs:
212212
repository: ${{ inputs.CHECKOUT_CODE }}
213213

214214
- name: Go Build Cache
215-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
215+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
216216
with:
217217
path: ${{ needs.setup.outputs.go_build }}
218218
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
219219

220220
- name: Go Mod Cache
221-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
221+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
222222
with:
223223
path: ${{ needs.setup.outputs.go_mod }}
224224
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
@@ -346,13 +346,13 @@ jobs:
346346
repository: ${{ inputs.CHECKOUT_CODE }}
347347

348348
- name: Go Build Cache
349-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
349+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
350350
with:
351351
path: ${{ needs.setup.outputs.go_build }}
352352
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
353353

354354
- name: Go Mod Cache
355-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
355+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
356356
with:
357357
path: ${{ needs.setup.outputs.go_mod }}
358358
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
@@ -472,13 +472,13 @@ jobs:
472472
repository: ${{ inputs.CHECKOUT_CODE }}
473473

474474
- name: Go Build Cache
475-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
475+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
476476
with:
477477
path: ${{ needs.setup.outputs.go_build }}
478478
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
479479

480480
- name: Go Mod Cache
481-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
481+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
482482
with:
483483
path: ${{ needs.setup.outputs.go_mod }}
484484
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
@@ -535,13 +535,13 @@ jobs:
535535
repository: ${{ inputs.CHECKOUT_CODE }}
536536

537537
- name: Go Build Cache
538-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
538+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
539539
with:
540540
path: ${{ needs.setup.outputs.go_build }}
541541
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
542542

543543
- name: Go Mod Cache
544-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
544+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
545545
with:
546546
path: ${{ needs.setup.outputs.go_mod }}
547547
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
@@ -594,13 +594,13 @@ jobs:
594594
repository: ${{ inputs.CHECKOUT_CODE }}
595595

596596
- name: Go Build Cache
597-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
597+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
598598
with:
599599
path: ${{ needs.setup.outputs.go_build }}
600600
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
601601

602602
- name: Go Mod Cache
603-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
603+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
604604
with:
605605
path: ${{ needs.setup.outputs.go_mod }}
606606
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}

.github/workflows/release-operator.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,13 @@ jobs:
161161
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
162162

163163
- name: Go Build Cache
164-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
164+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
165165
with:
166166
path: ${{ steps.go-cache-paths.outputs.go-build }}
167167
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
168168

169169
- name: Go Mod Cache
170-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
170+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
171171
with:
172172
path: ${{ steps.go-cache-paths.outputs.go-mod }}
173173
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
@@ -257,13 +257,13 @@ jobs:
257257
fi
258258
259259
- name: Go Build Cache
260-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
260+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
261261
with:
262262
path: ${{ needs.setup.outputs.go_build }}
263263
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
264264

265265
- name: Go Mod Cache
266-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
266+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
267267
with:
268268
path: ${{ needs.setup.outputs.go_mod }}
269269
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
@@ -488,13 +488,13 @@ jobs:
488488
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
489489

490490
- name: Go Build Cache
491-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
491+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
492492
with:
493493
path: ${{ needs.setup.outputs.go_build }}
494494
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
495495

496496
- name: Go Mod Cache
497-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
497+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
498498
with:
499499
path: ${{ needs.setup.outputs.go_mod }}
500500
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
@@ -710,13 +710,13 @@ jobs:
710710
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
711711

712712
- name: Go Build Cache
713-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
713+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
714714
with:
715715
path: ${{ needs.setup.outputs.go_build }}
716716
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
717717

718718
- name: Go Mod Cache
719-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
719+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
720720
with:
721721
path: ${{ needs.setup.outputs.go_mod }}
722722
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
@@ -1069,13 +1069,13 @@ jobs:
10691069
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
10701070

10711071
- name: Go Build Cache
1072-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
1072+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
10731073
with:
10741074
path: ${{ needs.setup.outputs.go_build }}
10751075
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
10761076

10771077
- name: Go Mod Cache
1078-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
1078+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
10791079
with:
10801080
path: ${{ needs.setup.outputs.go_mod }}
10811081
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
@@ -1126,13 +1126,13 @@ jobs:
11261126
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
11271127

11281128
- name: Go Build Cache
1129-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
1129+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
11301130
with:
11311131
path: ${{ needs.setup.outputs.go_build }}
11321132
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
11331133

11341134
- name: Go Mod Cache
1135-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
1135+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
11361136
with:
11371137
path: ${{ needs.setup.outputs.go_mod }}
11381138
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)