Skip to content

Commit 2fd8668

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

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
101101
- name: Restore CLI build cache
102102
id: cli-build-cache
103-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
103+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
104104
with:
105105
path: |
106106
packages/cli/build/
@@ -145,7 +145,7 @@ jobs:
145145
146146
- name: Restore CLI build cache
147147
id: cli-build-cache
148-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
148+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
149149
with:
150150
path: |
151151
packages/cli/build/
@@ -178,15 +178,15 @@ jobs:
178178
179179
- name: Restore SEA binary cache
180180
id: sea-cache
181-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
181+
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
182182
with:
183183
path: packages/node-sea-builder/dist/sea/
184184
key: node-sea-linux-x64-${{ steps.cache-keys.outputs.sea-hash }}
185185
restore-keys: node-sea-linux-x64-
186186

187187
- name: Restore smol binary cache
188188
id: smol-cache
189-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
189+
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
190190
with:
191191
path: packages/node-smol-builder/dist/
192192
key: node-smol-linux-x64-${{ steps.cache-keys.outputs.smol-hash }}
@@ -303,7 +303,7 @@ jobs:
303303
304304
- name: Restore CLI build cache
305305
id: cli-build-cache
306-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
306+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
307307
with:
308308
path: |
309309
packages/cli/build/

.github/workflows/provenance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
scope: '@socketsecurity'
6767
- name: Cache yoga-layout WASM
6868
id: cache-yoga
69-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
69+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
7070
with:
7171
path: packages/yoga-layout/build/wasm
7272
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
@@ -164,7 +164,7 @@ jobs:
164164
- name: Restore build-deps cache for smol
165165
if: inputs.method == 'smol' || inputs.method == 'smol-sea'
166166
id: smol-deps-cache
167-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
167+
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
168168
with:
169169
path: |
170170
packages/bootstrap/dist/
@@ -200,7 +200,7 @@ jobs:
200200
- name: Restore smol binary cache
201201
if: inputs.method == 'smol' || inputs.method == 'smol-sea'
202202
id: smol-cache
203-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
203+
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
204204
with:
205205
path: packages/node-smol-builder/dist/socket-smol-${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.os == 'windows' && '.exe' || '' }}
206206
key: node-smol-${{ matrix.platform }}-${{ matrix.arch }}-${{ steps.smol-cache-key.outputs.hash }}
@@ -246,7 +246,7 @@ jobs:
246246
- name: Restore build-deps cache
247247
if: inputs.method == 'sea' || inputs.method == 'smol-sea'
248248
id: deps-cache
249-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
249+
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
250250
with:
251251
path: |
252252
packages/bootstrap/dist/
@@ -281,7 +281,7 @@ jobs:
281281
- name: Restore SEA binary cache
282282
if: inputs.method == 'sea' || inputs.method == 'smol-sea'
283283
id: sea-cache
284-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
284+
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
285285
with:
286286
path: packages/node-sea-builder/dist/sea/
287287
key: node-sea-${{ matrix.platform }}-${{ matrix.arch }}-${{ steps.sea-cache-key.outputs.hash }}

0 commit comments

Comments
 (0)