Skip to content

Commit 4e00540

Browse files
chore(deps): bump actions/cache from 4.3.0 to 5.0.1
Bumps [actions/cache](https://github.com/actions/cache) from 4.3.0 to 5.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0057852...9255dc7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9cc003b commit 4e00540

File tree

6 files changed

+29
-29
lines changed

6 files changed

+29
-29
lines changed

.github/workflows/build-sea.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
9292
- name: Restore build-deps cache
9393
id: deps-cache
94-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
94+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
9595
with:
9696
path: |
9797
packages/bootstrap/dist/
@@ -246,7 +246,7 @@ jobs:
246246
- name: Restore Yoga Layout WASM cache
247247
if: steps.check-platform.outputs.should-run == 'true'
248248
id: yoga-cache
249-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
249+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
250250
with:
251251
path: packages/yoga-layout/build/wasm
252252
key: yoga-wasm-${{ steps.wasm-cache-keys.outputs.yoga-hash }}
@@ -256,7 +256,7 @@ jobs:
256256
# - name: Restore AI models cache
257257
# if: steps.check-platform.outputs.should-run == 'true'
258258
# id: ai-cache
259-
# uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
259+
# uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
260260
# with:
261261
# path: packages/socketbin-cli-ai/dist
262262
# key: ai-models-${{ steps.wasm-cache-keys.outputs.ai-hash }}
@@ -265,7 +265,7 @@ jobs:
265265

266266
# - name: Restore ONNX Runtime cache
267267
# id: onnx-cache
268-
# uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
268+
# uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
269269
# with:
270270
# path: packages/onnxruntime/dist
271271
# key: onnx-runtime-${{ steps.wasm-cache-keys.outputs.onnx-hash }}
@@ -345,15 +345,15 @@ jobs:
345345
- name: Cache Emscripten SDK (non-Windows)
346346
if: steps.check-platform.outputs.should-run == 'true' && steps.yoga-cache-valid.outputs.valid != 'true' && matrix.os != 'windows'
347347
id: emsdk-cache
348-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
348+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
349349
with:
350350
path: emsdk
351351
key: emsdk-${{ runner.os }}-3.1.69
352352
restore-keys: emsdk-${{ runner.os }}-
353353

354354
# - name: Cache pip packages
355355
# if: steps.check-platform.outputs.should-run == 'true' && steps.ai-cache-valid.outputs.valid != 'true'
356-
# uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
356+
# uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
357357
# with:
358358
# path: ~/.cache/pip
359359
# key: pip-${{ runner.os }}-py3.11-${{ hashFiles('**/requirements*.txt') }}-onnx-torch
@@ -459,7 +459,7 @@ jobs:
459459
- name: Restore SEA binary cache
460460
if: steps.check-platform.outputs.should-run == 'true' && inputs.force != true
461461
id: sea-cache
462-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
462+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
463463
with:
464464
path: packages/node-sea-builder/dist/sea/
465465
key: node-sea-${{ matrix.platform }}-${{ matrix.arch }}-${{ steps.sea-cache-key.outputs.hash }}

.github/workflows/build-smol.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
9292
- name: Restore build-deps cache
9393
id: deps-cache
94-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
94+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
9595
with:
9696
path: |
9797
packages/bootstrap/dist/
@@ -254,7 +254,7 @@ jobs:
254254
- name: Restore smol build cache
255255
if: inputs.force != true
256256
id: smol-build-cache
257-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
257+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
258258
with:
259259
path: packages/node-smol-builder/build
260260
key: node-smol-build-${{ matrix.platform }}-${{ matrix.arch }}-${{ steps.smol-cache-key.outputs.hash }}
@@ -264,7 +264,7 @@ jobs:
264264
- name: Restore smol stripped binary cache
265265
if: inputs.force != true
266266
id: smol-stripped-cache
267-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
267+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
268268
with:
269269
path: packages/node-smol-builder/build/out/Stripped
270270
key: node-smol-stripped-${{ matrix.platform }}-${{ matrix.arch }}-${{ steps.smol-cache-key.outputs.hash }}
@@ -273,7 +273,7 @@ jobs:
273273
- name: Restore smol binary cache
274274
if: inputs.force != true
275275
id: smol-cache
276-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
276+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
277277
with:
278278
path: packages/node-smol-builder/dist/socket-smol-${{ matrix.platform }}-${{ matrix.arch }}
279279
key: node-smol-${{ matrix.platform }}-${{ matrix.arch }}-${{ steps.smol-cache-key.outputs.hash }}
@@ -370,7 +370,7 @@ jobs:
370370
- name: Cache Ninja (Ubuntu)
371371
if: (steps.smol-cache-valid.outputs.valid != 'true' || inputs.force) && matrix.platform == 'linux'
372372
id: ninja-cache-ubuntu
373-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
373+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
374374
with:
375375
path: /usr/bin/ninja
376376
key: ninja-ubuntu-${{ runner.os }}-${{ runner.arch }}
@@ -382,7 +382,7 @@ jobs:
382382
- name: Cache Ninja (macOS)
383383
if: (steps.smol-cache-valid.outputs.valid != 'true' || inputs.force) && matrix.platform == 'darwin'
384384
id: ninja-cache-macos
385-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
385+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
386386
with:
387387
path: |
388388
/usr/local/bin/ninja
@@ -396,7 +396,7 @@ jobs:
396396
- name: Cache Ninja (Windows)
397397
if: (steps.smol-cache-valid.outputs.valid != 'true' || inputs.force) && matrix.platform == 'win32'
398398
id: ninja-cache-windows
399-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
399+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
400400
with:
401401
path: C:\ProgramData\chocolatey\bin\ninja.exe
402402
key: ninja-windows-${{ runner.os }}-${{ runner.arch }}

.github/workflows/build-wasm.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
106106
- name: Restore yoga output cache
107107
id: yoga-cache
108-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
108+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
109109
with:
110110
path: packages/yoga-layout/build/wasm
111111
key: yoga-wasm-${{ steps.yoga-cache-key.outputs.hash }}
@@ -114,7 +114,7 @@ jobs:
114114

115115
- name: Restore yoga build cache
116116
id: yoga-build-cache
117-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
117+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
118118
with:
119119
path: packages/yoga-layout/build
120120
key: yoga-build-${{ steps.yoga-cache-key.outputs.hash }}
@@ -212,7 +212,7 @@ jobs:
212212
python-version: '3.11'
213213

214214
- name: Cache pip packages
215-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
215+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
216216
with:
217217
path: ~/.cache/pip
218218
key: pip-${{ runner.os }}-py3.13-${{ hashFiles('**/requirements*.txt') }}-onnx-torch
@@ -254,7 +254,7 @@ jobs:
254254
255255
- name: Restore models cache
256256
id: models-cache
257-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
257+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
258258
with:
259259
path: packages/models/dist
260260
key: models-${{ steps.models-cache-key.outputs.hash }}
@@ -386,7 +386,7 @@ jobs:
386386
387387
- name: Restore ONNX Runtime output cache
388388
id: onnx-cache
389-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
389+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
390390
with:
391391
path: packages/onnxruntime/build/wasm
392392
key: onnx-runtime-${{ steps.onnx-cache-key.outputs.hash }}
@@ -395,7 +395,7 @@ jobs:
395395

396396
- name: Restore ONNX Runtime build cache
397397
id: onnx-build-cache
398-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
398+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
399399
with:
400400
path: packages/onnxruntime/build
401401
key: onnx-runtime-build-${{ steps.onnx-cache-key.outputs.hash }}
@@ -417,7 +417,7 @@ jobs:
417417
418418
- name: Cache Emscripten SDK
419419
id: emsdk-cache
420-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
420+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
421421
with:
422422
path: emsdk
423423
key: emsdk-${{ runner.os }}-4.0.18
@@ -470,7 +470,7 @@ jobs:
470470
471471
- name: Save ONNX Runtime build cache
472472
if: always() && (steps.onnx-cache-valid.outputs.valid != 'true' || inputs.force)
473-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
473+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
474474
with:
475475
path: packages/onnxruntime/build
476476
key: onnx-runtime-build-${{ steps.onnx-cache-key.outputs.hash }}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,15 @@ jobs:
110110
111111
- name: Restore SEA binary cache
112112
id: sea-cache
113-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
113+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
114114
with:
115115
path: packages/node-sea-builder/dist/sea/
116116
key: node-sea-linux-x64-${{ steps.cache-keys.outputs.sea-hash }}
117117
restore-keys: node-sea-linux-x64-
118118

119119
- name: Restore smol binary cache
120120
id: smol-cache
121-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
121+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
122122
with:
123123
path: packages/node-smol-builder/dist/
124124
key: node-smol-linux-x64-${{ steps.cache-keys.outputs.smol-hash }}

.github/workflows/provenance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
scope: '@socketsecurity'
4949
- name: Cache yoga-layout WASM
5050
id: cache-yoga
51-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
51+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
5252
with:
5353
path: packages/yoga-layout/build/wasm
5454
key: yoga-wasm-${{ hashFiles('packages/yoga-layout/package.json', 'packages/yoga-layout/yoga/**') }}

.github/workflows/publish-socketbin.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
- name: Restore build-deps cache for smol
154154
if: inputs.method == 'smol' || inputs.method == 'smol-sea'
155155
id: smol-deps-cache
156-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
156+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
157157
with:
158158
path: |
159159
packages/bootstrap/dist/
@@ -187,7 +187,7 @@ jobs:
187187
- name: Restore smol binary cache
188188
if: inputs.method == 'smol' || inputs.method == 'smol-sea'
189189
id: smol-cache
190-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
190+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
191191
with:
192192
path: packages/node-smol-builder/dist/socket-smol-${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.os == 'windows' && '.exe' || '' }}
193193
key: node-smol-${{ matrix.platform }}-${{ matrix.arch }}-${{ steps.smol-cache-key.outputs.hash }}
@@ -233,7 +233,7 @@ jobs:
233233
- name: Restore build-deps cache
234234
if: inputs.method == 'sea' || inputs.method == 'smol-sea'
235235
id: deps-cache
236-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
236+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
237237
with:
238238
path: |
239239
packages/bootstrap/dist/
@@ -266,7 +266,7 @@ jobs:
266266
- name: Restore SEA binary cache
267267
if: inputs.method == 'sea' || inputs.method == 'smol-sea'
268268
id: sea-cache
269-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
269+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
270270
with:
271271
path: packages/node-sea-builder/dist/sea/
272272
key: node-sea-${{ matrix.platform }}-${{ matrix.arch }}-${{ steps.sea-cache-key.outputs.hash }}

0 commit comments

Comments
 (0)