Skip to content

Commit 4d8fe84

Browse files
Update actions/cache digest to caa2961
1 parent b1d9d95 commit 4d8fe84

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 }}
@@ -321,7 +321,7 @@ jobs:
321321
id: pnpm-cache
322322
run: echo "STORE_PATH=$(pnpm store path --silent)" >> "$GITHUB_OUTPUT"
323323
- name: Restore pnpm store cache
324-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
324+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
325325
with:
326326
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
327327
key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -333,7 +333,7 @@ jobs:
333333
run: echo "version=$(cd desktop && node -e "console.log(require('@playwright/test/package.json').version)")" >> "$GITHUB_OUTPUT"
334334
- name: Restore Playwright browser cache
335335
id: playwright-cache
336-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
336+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
337337
with:
338338
path: ${{ env.PLAYWRIGHT_BROWSERS_PATH }}
339339
key: playwright-${{ runner.os }}-${{ steps.pw-version.outputs.version }}
@@ -344,7 +344,7 @@ jobs:
344344
run: cd desktop && pnpm exec playwright install-deps chromium
345345
- name: Save Playwright browser cache
346346
if: steps.playwright-cache.outputs.cache-hit != 'true' && github.event_name == 'push' && matrix.shard == 1
347-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
347+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
348348
with:
349349
path: ${{ env.PLAYWRIGHT_BROWSERS_PATH }}
350350
key: playwright-${{ runner.os }}-${{ steps.pw-version.outputs.version }}
@@ -451,7 +451,7 @@ jobs:
451451
if-no-files-found: ignore
452452
- name: Save pnpm store cache
453453
if: github.event_name == 'push'
454-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
454+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
455455
with:
456456
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
457457
key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -646,7 +646,7 @@ jobs:
646646
id: pnpm-cache
647647
run: echo "STORE_PATH=$(pnpm store path --silent)" >> "$GITHUB_OUTPUT"
648648
- name: Restore pnpm store cache
649-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
649+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
650650
with:
651651
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
652652
key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -659,7 +659,7 @@ jobs:
659659
run: just web-build
660660
- name: Save pnpm store cache
661661
if: github.event_name == 'push'
662-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
662+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
663663
with:
664664
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
665665
key: pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -682,7 +682,7 @@ jobs:
682682
echo "hash=$hash" >> "$GITHUB_OUTPUT"
683683
- name: Restore Hermit package cache
684684
id: hermit-cache
685-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
685+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
686686
with:
687687
path: ~/.cache/hermit/pkg
688688
key: ${{ runner.os }}-hermit-cache-${{ steps.hermit-bin-hash.outputs.hash }}
@@ -691,14 +691,14 @@ jobs:
691691
run: flutter --version
692692
- name: Save Hermit package cache
693693
if: always() && steps.hermit-cache.outputs.cache-hit != 'true'
694-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
694+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
695695
continue-on-error: true
696696
with:
697697
path: ~/.cache/hermit/pkg
698698
key: ${{ runner.os }}-hermit-cache-${{ steps.hermit-bin-hash.outputs.hash }}
699699
- name: Restore pub cache
700700
id: pub-cache
701-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
701+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
702702
with:
703703
path: ~/.pub-cache
704704
key: pub-${{ runner.os }}-${{ hashFiles('mobile/pubspec.lock') }}
@@ -707,7 +707,7 @@ jobs:
707707
run: cd mobile && flutter pub get
708708
- name: Save pub cache
709709
if: always() && steps.pub-cache.outputs.cache-hit != 'true'
710-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
710+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
711711
continue-on-error: true
712712
with:
713713
path: ~/.pub-cache
@@ -967,7 +967,7 @@ jobs:
967967
echo "short=${REV:0:7}" >> "$GITHUB_OUTPUT"
968968
- name: Restore mesh llama build cache
969969
id: llama_cache
970-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
970+
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5
971971
with:
972972
path: ${{ github.workspace }}/.cache/mesh-llama
973973
key: mesh-llama-${{ runner.os }}-metal-${{ steps.mesh_rev.outputs.rev }}
@@ -991,7 +991,7 @@ jobs:
991991
"$MESH_ROOT/scripts/build-llama.sh" -DCMAKE_OSX_DEPLOYMENT_TARGET=10.15
992992
- name: Save mesh llama build cache
993993
if: steps.llama_cache.outputs.cache-hit != 'true'
994-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
994+
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5
995995
with:
996996
path: ${{ github.workspace }}/.cache/mesh-llama
997997
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)