Skip to content

Commit d40e4e1

Browse files
committed
Merge branch 'master' of https://github.com/rollup/rollup into sync-160514db
2 parents 53b966e + 160514d commit d40e4e1

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
8+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
21+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
2222
with:
2323
path: |
2424
node_modules

.github/actions/prepare-build-artifacts/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: composite
55
steps:
66
- name: Download all artifacts
7-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
7+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
88
with:
99
path: artifacts
1010
- name: Copy WASM files

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ jobs:
207207
if: ${{ matrix.settings.target != 'x86_64-pc-windows-gnu' }}
208208
with:
209209
node-version: 24.10.0
210-
- uses: msys2/setup-msys2@fb197b72ce45fb24f17bf3f807a388985654d1f2 # v2
210+
- uses: msys2/setup-msys2@4f806de0a5a7294ffabaff804b38a9b435a73bda # v2
211211
if: ${{ matrix.settings.target == 'x86_64-pc-windows-gnu' }}
212212
with:
213213
msystem: ${{ matrix.settings.msystem }}
@@ -230,7 +230,7 @@ jobs:
230230
if: ${{ contains(matrix.settings.target, 'ohos') }}
231231
uses: openharmony-rs/setup-ohos-sdk@3c181b3244cec76aaec289ab84fb00f55f2fce3f # v0.2.4
232232
- name: Restore Cargo cache
233-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
233+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
234234
if: matrix.settings.cache-cargo != false
235235
with:
236236
path: |
@@ -278,7 +278,7 @@ jobs:
278278
shell: bash
279279
- name: Save Cargo cache
280280
if: github.ref == 'refs/heads/master' && matrix.settings.cache-cargo != false
281-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
281+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
282282
with:
283283
path: |
284284
~/.cargo/registry/index/
@@ -288,14 +288,14 @@ jobs:
288288
rust/target/
289289
key: ${{ matrix.settings.name || matrix.settings.target }}-cargo-${{ matrix.settings.host }}-${{ hashFiles('rust/Cargo.lock') }}
290290
- name: Upload wasm artifact
291-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
291+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
292292
with:
293293
name: bindings-${{ matrix.settings.name }}
294294
path: ${{ matrix.settings.path }}
295295
if-no-files-found: error
296296
if: ${{ matrix.settings.is-wasm-build }}
297297
- name: Upload napi artifact
298-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
298+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
299299
with:
300300
name: bindings-${{ matrix.settings.target }}
301301
path: ${{ env.APP_NAME }}.*.node
@@ -347,7 +347,7 @@ jobs:
347347
- name: Build JS
348348
run: npm run build:cjs
349349
- name: Download napi artifacts
350-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
350+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
351351
with:
352352
name: bindings-${{ matrix.settings.target }}
353353
path: dist/

.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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
43+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
4444
with:
4545
path: |
4646
~/.cargo/registry/index/
@@ -59,7 +59,7 @@ jobs:
5959
- name: Build artefacts 123
6060
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
6161
- name: Upload artifact
62-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
62+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6363
with:
6464
name: ${{ matrix.settings.name }}
6565
path: dist/
@@ -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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
85+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
8686
with:
8787
path: |
8888
~/.cargo/registry/index/
@@ -99,7 +99,7 @@ jobs:
9999
- name: Install and Cache Node Dependencies
100100
uses: ./.github/actions/install-and-cache-node-deps
101101
- name: Download all artifacts
102-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
102+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
103103
with:
104104
path: _benchmark
105105
- name: Change rollup import in internal benchmark

.github/workflows/repl-artefacts.yml

Lines changed: 1 addition & 1 deletion
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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
43+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
4444
with:
4545
path: |
4646
~/.cargo/registry/index/

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)