Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e192a67

Browse filesBrowse files
fix(deps): lock file maintenance minor/patch updates (#5894)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8b1c634 commit e192a67
Copy full SHA for e192a67

File tree

Expand file treeCollapse file tree

10 files changed

+475
-441
lines changed
Filter options
Expand file treeCollapse file tree

10 files changed

+475
-441
lines changed

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

Copy file name to clipboardExpand all lines: .github/workflows/build-and-tests.yml
+18-18Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
node-version: 22
3939
- name: Restore Node dependencies cache
4040
id: cache-node-modules
41-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
41+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4242
with:
4343
path: |
4444
node_modules
@@ -242,7 +242,7 @@ jobs:
242242
toolchain: stable
243243
targets: ${{ matrix.settings.target }}
244244
- name: Restore Cargo cache
245-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
245+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
246246
with:
247247
path: |
248248
~/.cargo/registry/index/
@@ -262,7 +262,7 @@ jobs:
262262
shell: bash
263263
- name: Restore Node dependencies cache
264264
id: cache-node-modules
265-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
265+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
266266
with:
267267
path: |
268268
node_modules
@@ -274,7 +274,7 @@ jobs:
274274
run: npm ${{ github.ref == 'refs/heads/master' && 'ci' || 'install' }} --ignore-scripts
275275
- name: Save Node dependencies cache
276276
if: steps.cache-node-modules.outputs.cache-hit != 'true' && github.ref == 'refs/heads/master'
277-
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
277+
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
278278
with:
279279
path: |
280280
node_modules
@@ -293,7 +293,7 @@ jobs:
293293
shell: bash
294294
- name: Save Cargo cache
295295
if: github.ref == 'refs/heads/master'
296-
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
296+
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
297297
with:
298298
path: |
299299
~/.cargo/registry/index/
@@ -303,14 +303,14 @@ jobs:
303303
rust/target/
304304
key: ${{ matrix.settings.name || matrix.settings.target }}-cargo-${{ matrix.settings.host }}-${{ hashFiles('rust/Cargo.lock') }}
305305
- name: Upload wasm artifact
306-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
306+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
307307
with:
308308
name: bindings-${{ matrix.settings.name }}
309309
path: ${{ matrix.settings.path }}
310310
if-no-files-found: error
311311
if: ${{ matrix.settings.is-wasm-build }}
312312
- name: Upload napi artifact
313-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
313+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
314314
with:
315315
name: bindings-${{ matrix.settings.target }}
316316
path: ${{ env.APP_NAME }}.*.node
@@ -337,7 +337,7 @@ jobs:
337337
- name: Checkout Commit
338338
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
339339
- name: Restore Cargo cache
340-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
340+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
341341
with:
342342
path: |
343343
~/.cargo/registry/index/
@@ -349,7 +349,7 @@ jobs:
349349
restore-keys: ${{ matrix.settings.target }}-cargo
350350
- name: Restore Node dependencies cache
351351
id: cache-node-modules
352-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
352+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
353353
with:
354354
path: |
355355
node_modules
@@ -369,7 +369,7 @@ jobs:
369369
npm run build:napi -- --release --target ${{ matrix.settings.target }}
370370
- name: Save Cargo cache
371371
if: github.ref == 'refs/heads/master'
372-
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
372+
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
373373
with:
374374
path: |
375375
~/.cargo/registry/index/
@@ -379,7 +379,7 @@ jobs:
379379
rust/target/
380380
key: ${{ matrix.settings.target }}-cargo-${{ hashFiles('rust/Cargo.lock') }}
381381
- name: Upload napi artifact
382-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
382+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
383383
with:
384384
name: bindings-${{ matrix.settings.target }}
385385
path: ${{ env.APP_NAME }}.*.node
@@ -429,7 +429,7 @@ jobs:
429429
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
430430
- name: Restore Node dependencies cache
431431
id: cache-node-modules
432-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
432+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
433433
with:
434434
path: |
435435
node_modules
@@ -442,7 +442,7 @@ jobs:
442442
- name: Build JS
443443
run: npm run build:cjs
444444
- name: Download napi artifacts
445-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
445+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
446446
with:
447447
name: bindings-${{ matrix.settings.target }}
448448
path: dist/
@@ -527,7 +527,7 @@ jobs:
527527
check-latest: true
528528
- name: Restore Node dependencies cache
529529
id: cache-node-modules
530-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
530+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
531531
with:
532532
path: |
533533
node_modules
@@ -538,12 +538,12 @@ jobs:
538538
if: steps.cache-node-modules.outputs.cache-hit != 'true'
539539
run: npm install --ignore-scripts
540540
- name: Download napi artifacts
541-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
541+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
542542
with:
543543
name: bindings-${{ matrix.settings.target }}
544544
path: .
545545
- name: Download wasm artifacts
546-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
546+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
547547
with:
548548
name: bindings-wasm
549549
- name: Build and test Rollup
@@ -585,7 +585,7 @@ jobs:
585585
check-latest: true
586586
- name: Restore Node dependencies cache
587587
id: cache-node-modules
588-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
588+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
589589
with:
590590
path: |
591591
node_modules
@@ -596,7 +596,7 @@ jobs:
596596
if: steps.cache-node-modules.outputs.cache-hit != 'true'
597597
run: npm install --ignore-scripts
598598
- name: Download all artifacts
599-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
599+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
600600
with:
601601
path: artifacts
602602
- name: Copy wasm files

‎.github/workflows/performance-report.yml

Copy file name to clipboardExpand all lines: .github/workflows/performance-report.yml
+6-6Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
toolchain: stable
3939
targets: x86_64-unknown-linux-gnu
4040
- name: Restore Cargo cache
41-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
41+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4242
with:
4343
path: |
4444
~/.cargo/registry/index/
@@ -54,7 +54,7 @@ jobs:
5454
node-version: 22
5555
- name: Restore Node dependencies cache
5656
id: cache-node-modules
57-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
57+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
5858
with:
5959
path: |
6060
node_modules
@@ -66,7 +66,7 @@ jobs:
6666
- name: Build artefacts 123
6767
run: npm exec -- concurrently -c green,blue 'npm:build:napi -- --release' 'npm:build:cjs' && npm run build:copy-native && npm run build:bootstrap:cjs && npm run build:copy-native
6868
- name: Upload artifact
69-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
69+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
7070
with:
7171
name: ${{ matrix.settings.name }}
7272
path: dist/
@@ -89,7 +89,7 @@ jobs:
8989
toolchain: stable
9090
targets: x86_64-unknown-linux-gnu
9191
- name: Restore Cargo cache
92-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
92+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
9393
with:
9494
path: |
9595
~/.cargo/registry/index/
@@ -105,7 +105,7 @@ jobs:
105105
node-version: 22
106106
- name: Restore Node dependencies cache
107107
id: cache-node-modules
108-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
108+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
109109
with:
110110
path: |
111111
node_modules
@@ -115,7 +115,7 @@ jobs:
115115
if: steps.cache-node-modules.outputs.cache-hit != 'true'
116116
run: npm ci --ignore-scripts
117117
- name: Download all artifacts
118-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
118+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
119119
with:
120120
path: _benchmark
121121
- name: Change rollup import in internal benchmark

‎.github/workflows/repl-artefacts.yml

Copy file name to clipboardExpand all lines: .github/workflows/repl-artefacts.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
toolchain: stable
3434
targets: wasm32-unknown-unknown
3535
- name: Restore Cargo cache
36-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
36+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
3737
with:
3838
path: |
3939
~/.cargo/registry/index/
@@ -49,7 +49,7 @@ jobs:
4949
node-version: 22
5050
- name: Restore Node dependencies cache
5151
id: cache-node-modules
52-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
52+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
5353
with:
5454
path: |
5555
node_modules

‎browser/package.json

Copy file name to clipboardExpand all lines: browser/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"homepage": "https://rollupjs.org/",
2222
"dependencies": {
23-
"@types/estree": "1.0.6"
23+
"@types/estree": "1.0.7"
2424
},
2525
"files": [
2626
"dist/**/*.wasm",

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.