Skip to content

Commit 8ca8ab1

Browse files
chore(deps): update actions/cache digest to caa2961
1 parent e6738c5 commit 8ca8ab1

2 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
id: pnpm-cache
144144
run: echo "STORE_PATH=$(pnpm store path --silent)" >> "$GITHUB_OUTPUT"
145145
- name: Restore pnpm store cache
146-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
146+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
147147
with:
148148
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
149149
key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -175,7 +175,7 @@ jobs:
175175
if-no-files-found: ignore
176176
- name: Save pnpm store cache
177177
if: github.event_name == 'push'
178-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
178+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
179179
with:
180180
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
181181
key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -199,7 +199,7 @@ jobs:
199199
id: pnpm-cache
200200
run: echo "STORE_PATH=$(pnpm store path --silent)" >> "$GITHUB_OUTPUT"
201201
- name: Restore pnpm store cache
202-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
202+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
203203
with:
204204
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
205205
key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -211,7 +211,7 @@ jobs:
211211
run: echo "version=$(cd desktop && node -e "console.log(require('@playwright/test/package.json').version)")" >> "$GITHUB_OUTPUT"
212212
- name: Restore Playwright browser cache
213213
id: playwright-cache
214-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
214+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
215215
with:
216216
path: ${{ env.PLAYWRIGHT_BROWSERS_PATH }}
217217
key: playwright-${{ runner.os }}-${{ steps.pw-version.outputs.version }}
@@ -222,7 +222,7 @@ jobs:
222222
run: cd desktop && pnpm exec playwright install-deps chromium
223223
- name: Save Playwright browser cache
224224
if: steps.playwright-cache.outputs.cache-hit != 'true' && github.event_name == 'push' && matrix.shard == 1
225-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
225+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
226226
with:
227227
path: ${{ env.PLAYWRIGHT_BROWSERS_PATH }}
228228
key: playwright-${{ runner.os }}-${{ steps.pw-version.outputs.version }}
@@ -310,7 +310,7 @@ jobs:
310310
id: pnpm-cache
311311
run: echo "STORE_PATH=$(pnpm store path --silent)" >> "$GITHUB_OUTPUT"
312312
- name: Restore pnpm store cache
313-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
313+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
314314
with:
315315
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
316316
key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -322,7 +322,7 @@ jobs:
322322
run: echo "version=$(cd desktop && node -e "console.log(require('@playwright/test/package.json').version)")" >> "$GITHUB_OUTPUT"
323323
- name: Restore Playwright browser cache
324324
id: playwright-cache
325-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
325+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
326326
with:
327327
path: ${{ env.PLAYWRIGHT_BROWSERS_PATH }}
328328
key: playwright-${{ runner.os }}-${{ steps.pw-version.outputs.version }}
@@ -333,7 +333,7 @@ jobs:
333333
run: cd desktop && pnpm exec playwright install-deps chromium
334334
- name: Save Playwright browser cache
335335
if: steps.playwright-cache.outputs.cache-hit != 'true' && github.event_name == 'push' && matrix.shard == 1
336-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
336+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
337337
with:
338338
path: ${{ env.PLAYWRIGHT_BROWSERS_PATH }}
339339
key: playwright-${{ runner.os }}-${{ steps.pw-version.outputs.version }}
@@ -433,7 +433,7 @@ jobs:
433433
if-no-files-found: ignore
434434
- name: Save pnpm store cache
435435
if: github.event_name == 'push'
436-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
436+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
437437
with:
438438
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
439439
key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -610,7 +610,7 @@ jobs:
610610
id: pnpm-cache
611611
run: echo "STORE_PATH=$(pnpm store path --silent)" >> "$GITHUB_OUTPUT"
612612
- name: Restore pnpm store cache
613-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
613+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
614614
with:
615615
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
616616
key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -623,7 +623,7 @@ jobs:
623623
run: just web-build
624624
- name: Save pnpm store cache
625625
if: github.event_name == 'push'
626-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
626+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
627627
with:
628628
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
629629
key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -646,7 +646,7 @@ jobs:
646646
echo "hash=$hash" >> "$GITHUB_OUTPUT"
647647
- name: Restore Hermit package cache
648648
id: hermit-cache
649-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
649+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
650650
with:
651651
path: ~/.cache/hermit/pkg
652652
key: ${{ runner.os }}-hermit-cache-${{ steps.hermit-bin-hash.outputs.hash }}
@@ -655,14 +655,14 @@ jobs:
655655
run: flutter --version
656656
- name: Save Hermit package cache
657657
if: always() && steps.hermit-cache.outputs.cache-hit != 'true'
658-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
658+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
659659
continue-on-error: true
660660
with:
661661
path: ~/.cache/hermit/pkg
662662
key: ${{ runner.os }}-hermit-cache-${{ steps.hermit-bin-hash.outputs.hash }}
663663
- name: Restore pub cache
664664
id: pub-cache
665-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
665+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
666666
with:
667667
path: ~/.pub-cache
668668
key: pub-${{ runner.os }}-${{ hashFiles('mobile/pubspec.lock') }}
@@ -671,7 +671,7 @@ jobs:
671671
run: cd mobile && flutter pub get
672672
- name: Save pub cache
673673
if: always() && steps.pub-cache.outputs.cache-hit != 'true'
674-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
674+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
675675
continue-on-error: true
676676
with:
677677
path: ~/.pub-cache
@@ -931,7 +931,7 @@ jobs:
931931
echo "short=${REV:0:7}" >> "$GITHUB_OUTPUT"
932932
- name: Restore mesh llama build cache
933933
id: llama_cache
934-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
934+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
935935
with:
936936
path: ${{ github.workspace }}/.cache/mesh-llama
937937
key: mesh-llama-${{ runner.os }}-metal-${{ steps.mesh_rev.outputs.rev }}
@@ -955,7 +955,7 @@ jobs:
955955
"$MESH_ROOT/scripts/build-llama.sh" -DCMAKE_OSX_DEPLOYMENT_TARGET=10.15
956956
- name: Save mesh llama build cache
957957
if: steps.llama_cache.outputs.cache-hit != 'true'
958-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
958+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
959959
with:
960960
path: ${{ github.workspace }}/.cache/mesh-llama
961961
key: mesh-llama-${{ runner.os }}-metal-${{ steps.mesh_rev.outputs.rev }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
echo "short=${REV:0:7}" >> "$GITHUB_OUTPUT"
144144
- name: Restore mesh llama build cache
145145
id: llama_cache
146-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
146+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
147147
with:
148148
path: ${{ github.workspace }}/.cache/mesh-llama
149149
key: mesh-llama-${{ runner.os }}-metal-${{ steps.mesh_rev.outputs.rev }}
@@ -167,7 +167,7 @@ jobs:
167167
"$MESH_ROOT/scripts/build-llama.sh" -DCMAKE_OSX_DEPLOYMENT_TARGET=10.15
168168
- name: Save mesh llama build cache
169169
if: steps.llama_cache.outputs.cache-hit != 'true'
170-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
170+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
171171
with:
172172
path: ${{ github.workspace }}/.cache/mesh-llama
173173
key: mesh-llama-${{ runner.os }}-metal-${{ steps.mesh_rev.outputs.rev }}

0 commit comments

Comments
 (0)