Skip to content

Commit c1c4175

Browse files
fix(deps): lock file maintenance minor/patch updates (#6134)
* fix(deps): lock file maintenance minor/patch updates * Update dependencies manually * Resolve vulnerability --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lukas Taegert-Atkinson <[email protected]>
1 parent bef29f4 commit c1c4175

File tree

9 files changed

+569
-1658
lines changed

9 files changed

+569
-1658
lines changed

.github/actions/install-and-cache-node-deps/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
steps:
66
- name: Restore Node dependencies cache
77
id: cache-node-modules
8-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
8+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
99
with:
1010
path: |
1111
node_modules
@@ -18,7 +18,7 @@ runs:
1818
shell: bash
1919
- name: Save Node dependencies cache
2020
if: steps.cache-node-modules.outputs.cache-hit != 'true' && github.ref == 'refs/heads/master'
21-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
21+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
2222
with:
2323
path: |
2424
node_modules

.github/workflows/build-and-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup Node
3636
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
3737
with:
38-
node-version: 24.8.0
38+
node-version: 24.9.0
3939
- name: Install and Cache Node Dependencies
4040
uses: ./.github/actions/install-and-cache-node-deps
4141
- name: Lint
@@ -224,7 +224,7 @@ jobs:
224224
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
225225
if: ${{ !matrix.settings.docker && matrix.settings.target != 'x86_64-pc-windows-gnu' }}
226226
with:
227-
node-version: 24.8.0
227+
node-version: 24.9.0
228228
- uses: msys2/setup-msys2@fb197b72ce45fb24f17bf3f807a388985654d1f2 # v2
229229
if: ${{ matrix.settings.target == 'x86_64-pc-windows-gnu' }}
230230
with:
@@ -249,7 +249,7 @@ jobs:
249249
if: ${{ contains(matrix.settings.target, 'ohos') }}
250250
uses: openharmony-rs/setup-ohos-sdk@3c181b3244cec76aaec289ab84fb00f55f2fce3f # v0.2.4
251251
- name: Restore Cargo cache
252-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
252+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
253253
if: matrix.settings.cache-cargo != false
254254
with:
255255
path: |
@@ -265,7 +265,7 @@ jobs:
265265
with:
266266
version: 0.14.1
267267
- name: Install cargo-zigbuild
268-
uses: taiki-e/install-action@5597bc27da443ba8bf9a3bc4e5459ea59177de42 # v2.62.4
268+
uses: taiki-e/install-action@d0f4f69b07c0804d1003ca9a5a5f853423872ed9 # v2.62.13
269269
if: ${{ matrix.settings.cross == 'zig' }}
270270
env:
271271
GITHUB_TOKEN: ${{ github.token }}
@@ -304,7 +304,7 @@ jobs:
304304
shell: bash
305305
- name: Save Cargo cache
306306
if: github.ref == 'refs/heads/master' && matrix.settings.cache-cargo != false
307-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
307+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
308308
with:
309309
path: |
310310
~/.cargo/registry/index/
@@ -510,7 +510,7 @@ jobs:
510510
- name: Setup Node
511511
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
512512
with:
513-
node-version: 24
513+
node-version: 24.9.0
514514
registry-url: 'https://registry.npmjs.org'
515515
- name: Update npm for publishing
516516
run: npm install -g npm@latest

.github/workflows/performance-report.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
toolchain: nightly-2025-07-25
4141
components: rust-src
4242
- name: Restore Cargo cache
43-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
43+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4444
with:
4545
path: |
4646
~/.cargo/registry/index/
@@ -53,7 +53,7 @@ jobs:
5353
- name: Setup Node
5454
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
5555
with:
56-
node-version: 24.8.0
56+
node-version: 24.9.0
5757
- name: Install and Cache Node Dependencies
5858
uses: ./.github/actions/install-and-cache-node-deps
5959
- name: Build artefacts 123
@@ -82,7 +82,7 @@ jobs:
8282
toolchain: nightly-2025-07-25
8383
components: rust-src
8484
- name: Restore Cargo cache
85-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
85+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
8686
with:
8787
path: |
8888
~/.cargo/registry/index/
@@ -95,7 +95,7 @@ jobs:
9595
- name: Setup Node
9696
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
9797
with:
98-
node-version: 24.8.0
98+
node-version: 24.9.0
9999
- name: Install and Cache Node Dependencies
100100
uses: ./.github/actions/install-and-cache-node-deps
101101
- name: Download all artifacts

.github/workflows/repl-artefacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
toolchain: nightly-2025-07-25
4141
components: rust-src
4242
- name: Restore Cargo cache
43-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
43+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4444
with:
4545
path: |
4646
~/.cargo/registry/index/
@@ -53,7 +53,7 @@ jobs:
5353
- name: Setup Node
5454
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
5555
with:
56-
node-version: 24.8.0
56+
node-version: 24.9.0
5757
- name: Install and Cache Node Dependencies
5858
uses: ./.github/actions/install-and-cache-node-deps
5959
- name: Build artefacts

0 commit comments

Comments
 (0)