Skip to content

Commit 943d6d7

Browse files
authored
Merge pull request #7120 from StoDevX/renovate/actions-cache-digest
Update actions/cache digest to e12d46a
2 parents f3576bf + e4cdd97 commit 943d6d7

File tree

2 files changed

+28
-28
lines changed

2 files changed

+28
-28
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
ruby-version: '3.0'
4444
bundler-cache: true
4545
- name: Restore Gradle cache
46-
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
46+
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
4747
with:
4848
path: |
4949
~/.gradle/caches

.github/workflows/check.yml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Extract job definition
2828
run: yq '.jobs.${{ github.job }}' .github/workflows/check.yml > .github/job.yml
2929

30-
- uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
30+
- uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
3131
id: node-cache
3232
with:
3333
path: node_modules/
@@ -42,7 +42,7 @@ jobs:
4242
- if: steps.node-cache.outputs.cache-hit != 'true'
4343
run: npm ci
4444

45-
- uses: actions/cache/save@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
45+
- uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
4646
if: steps.node-cache.outputs.cache-hit != 'true'
4747
with:
4848
path: node_modules/
@@ -59,7 +59,7 @@ jobs:
5959
- name: Extract job definition
6060
run: yq '.jobs.${{ github.job }}' .github/workflows/check.yml > .github/job.yml
6161

62-
- uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
62+
- uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
6363
id: node-cache
6464
with:
6565
path: node_modules/
@@ -74,7 +74,7 @@ jobs:
7474
- if: steps.node-cache.outputs.cache-hit != 'true'
7575
run: npm ci
7676

77-
- uses: actions/cache/save@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
77+
- uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
7878
if: steps.node-cache.outputs.cache-hit != 'true'
7979
with:
8080
path: node_modules/
@@ -106,7 +106,7 @@ jobs:
106106
run: yq '.jobs.${{ github.job }}' .github/workflows/check.yml > .github/job.yml
107107

108108
- name: Restore Cocoapods cache
109-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
109+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
110110
id: cocoapods-cache
111111
with:
112112
path: ios/Pods
@@ -127,7 +127,7 @@ jobs:
127127

128128
- name: Restore node_modules cache
129129
if: steps.cocoapods-cache.outputs.cache-hit != 'true'
130-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
130+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
131131
id: node-cache
132132
with:
133133
path: node_modules/
@@ -141,7 +141,7 @@ jobs:
141141
working-directory: ./ios
142142

143143
- name: Save Cocoapods cache
144-
uses: actions/cache/save@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
144+
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
145145
if: steps.cocoapods-cache.outputs.cache-hit != 'true'
146146
with:
147147
path: ios/Pods
@@ -159,7 +159,7 @@ jobs:
159159
node-version-file: '.node-version'
160160

161161
- name: Restore node_modules cache
162-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
162+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
163163
id: node-cache
164164
with:
165165
path: node_modules/
@@ -182,7 +182,7 @@ jobs:
182182
node-version-file: '.node-version'
183183

184184
- name: Restore node_modules cache
185-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
185+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
186186
id: node-cache
187187
with:
188188
path: node_modules/
@@ -205,7 +205,7 @@ jobs:
205205
node-version-file: '.node-version'
206206

207207
- name: Restore node_modules cache
208-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
208+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
209209
id: node-cache
210210
with:
211211
path: node_modules/
@@ -232,7 +232,7 @@ jobs:
232232
node-version-file: '.node-version'
233233

234234
- name: Restore node_modules cache
235-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
235+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
236236
id: node-cache
237237
with:
238238
path: node_modules/
@@ -255,7 +255,7 @@ jobs:
255255
node-version-file: '.node-version'
256256

257257
- name: Restore node_modules cache
258-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
258+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
259259
id: node-cache
260260
with:
261261
path: node_modules/
@@ -285,7 +285,7 @@ jobs:
285285
node-version-file: '.node-version'
286286

287287
- name: Restore node_modules cache
288-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
288+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
289289
id: node-cache
290290
with:
291291
path: node_modules/
@@ -295,7 +295,7 @@ jobs:
295295
run: exit 1
296296

297297
- name: Load the cached jsbundle
298-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
298+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
299299
id: jsbundle-cache
300300
with:
301301
path: |
@@ -311,7 +311,7 @@ jobs:
311311
APP_MODE: mocked
312312

313313
- name: Cache the jsbundle
314-
uses: actions/cache/save@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
314+
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
315315
if: steps.jsbundle-cache.outputs.cache-hit != 'true'
316316
with:
317317
path: |
@@ -337,7 +337,7 @@ jobs:
337337
node-version-file: '.node-version'
338338

339339
- name: Restore node_modules cache
340-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
340+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
341341
id: node-cache
342342
with:
343343
path: node_modules/
@@ -347,7 +347,7 @@ jobs:
347347
run: exit 1
348348

349349
- name: Load the cached jsbundle
350-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
350+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
351351
id: jsbundle-cache
352352
with:
353353
path: ./android/generated/
@@ -361,7 +361,7 @@ jobs:
361361

362362
- name: Cache the jsbundle
363363
if: steps.jsbundle-cache.outputs.cache-hit != 'true'
364-
uses: actions/cache/save@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
364+
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
365365
with:
366366
path: ./android/generated/
367367
key: ${{ steps.jsbundle-cache.outputs.cache-primary-key }}
@@ -378,7 +378,7 @@ jobs:
378378
node-version-file: '.node-version'
379379

380380
- name: Restore node_modules cache
381-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
381+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
382382
id: node-cache
383383
with:
384384
path: node_modules/
@@ -417,7 +417,7 @@ jobs:
417417
path: build/reports/
418418

419419
- name: Cache the Android app
420-
uses: actions/cache/save@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
420+
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
421421
with:
422422
path: android/app/build/outputs/apk/
423423
key: ${{ steps.app-cache.outputs.cache-primary-key }}
@@ -443,7 +443,7 @@ jobs:
443443

444444
- name: Check for cached iOS app
445445
id: app-cache
446-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
446+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
447447
with:
448448
path: ios/build/Build/Products/
449449
key: ${{ runner.os }}-ios-xcode@${{ env.xcode_version }}-${{ hashFiles('**/project.pbxproj', '**/Podfile', '**/Podfile.lock', 'package-lock.json', '.github/job.yml') }}
@@ -455,7 +455,7 @@ jobs:
455455

456456
- name: Restore node_modules cache
457457
if: steps.app-cache.outputs.cache-hit != 'true'
458-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
458+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
459459
id: node-cache
460460
with:
461461
path: node_modules/
@@ -475,7 +475,7 @@ jobs:
475475

476476
- name: Restore Cocoapods cache
477477
if: steps.app-cache.outputs.cache-hit != 'true'
478-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
478+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
479479
id: pods-cache
480480
with:
481481
path: ios/Pods
@@ -499,7 +499,7 @@ jobs:
499499
run: npx detox build e2e --configuration ios.sim.release
500500

501501
- name: Cache the iOS app
502-
uses: actions/cache/save@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
502+
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
503503
with:
504504
path: ios/build/Build/Products/
505505
key: ${{ steps.app-cache.outputs.cache-primary-key }}
@@ -521,7 +521,7 @@ jobs:
521521

522522
- # load the app before reinstalling detox, so that the package-lock cannot change
523523
name: Load the cached iOS app
524-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
524+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
525525
id: app-cache
526526
with:
527527
path: ios/build/Build/Products/
@@ -532,7 +532,7 @@ jobs:
532532

533533
- # load the jsbundle before reinstalling detox, so that the package-lock cannot change
534534
name: Load the cached iOS jsbundle
535-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
535+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
536536
id: jsbundle-cache
537537
with:
538538
path: |
@@ -556,7 +556,7 @@ jobs:
556556
node-version-file: '.node-version'
557557

558558
- name: Restore node_modules cache
559-
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
559+
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
560560
id: node-cache
561561
with:
562562
path: node_modules/

0 commit comments

Comments
 (0)