Skip to content

Commit 5612087

Browse files
committed
chore(ci): update actions/setup-node to v6.2.0 and actions/cache to v5.0.2
1 parent cd3de13 commit 5612087

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
persist-credentials: false
5151

5252
- name: Setup Node.js
53-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
53+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
5454
with:
5555
node-version-file: .node-version
5656
cache: '' # Disable automatic caching to prevent cache poisoning.
@@ -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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
persist-credentials: false
130130

131131
- name: Setup Node.js
132-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
132+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
133133
with:
134134
node-version-file: .node-version
135135
registry-url: 'https://registry.npmjs.org'
@@ -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 }}
@@ -364,7 +364,7 @@ jobs:
364364
persist-credentials: false
365365

366366
- name: Setup Node.js
367-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
367+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
368368
with:
369369
node-version-file: .node-version
370370
registry-url: 'https://registry.npmjs.org'

0 commit comments

Comments
 (0)