Skip to content

Commit 897fbf2

Browse files
chore(deps): update github-actions (major) (#310)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/download-artifact](https://redirect.github.com/actions/download-artifact) | action | major | `v5.0.0` -> `v6.0.0` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | major | `v4.6.2` -> `v5.0.0` | --- ### Release Notes <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v6.0.0`](https://redirect.github.com/actions/download-artifact/releases/tag/v6.0.0) [Compare Source](https://redirect.github.com/actions/download-artifact/compare/v5.0.0...v6.0.0) #### What's Changed **BREAKING CHANGE:** this update supports Node `v24.x`. This is not a breaking change per-se but we're treating it as such. - Update README for download-artifact v5 changes by [@&#8203;yacaovsnc](https://redirect.github.com/yacaovsnc) in [#&#8203;417](https://redirect.github.com/actions/download-artifact/pull/417) - Update README with artifact extraction details by [@&#8203;yacaovsnc](https://redirect.github.com/yacaovsnc) in [#&#8203;424](https://redirect.github.com/actions/download-artifact/pull/424) - Readme: spell out the first use of GHES by [@&#8203;danwkennedy](https://redirect.github.com/danwkennedy) in [#&#8203;431](https://redirect.github.com/actions/download-artifact/pull/431) - Bump `@actions/artifact` to `v4.0.0` - Prepare `v6.0.0` by [@&#8203;danwkennedy](https://redirect.github.com/danwkennedy) in [#&#8203;438](https://redirect.github.com/actions/download-artifact/pull/438) #### New Contributors - [@&#8203;danwkennedy](https://redirect.github.com/danwkennedy) made their first contribution in [#&#8203;431](https://redirect.github.com/actions/download-artifact/pull/431) **Full Changelog**: <actions/download-artifact@v5...v6.0.0> </details> <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v5.0.0`](https://redirect.github.com/actions/upload-artifact/compare/v4.6.2...v5.0.0) [Compare Source](https://redirect.github.com/actions/upload-artifact/compare/v4.6.2...v5.0.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 9am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/oxc-project/oxc-node). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTYuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE1Ni4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 2172b04 commit 897fbf2

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/CI.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
oxnode --version
7272
oxnode --help
7373
- name: Upload artifact
74-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
74+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
7575
with:
7676
name: cli
7777
path: ./packages/cli/dist
@@ -185,7 +185,7 @@ jobs:
185185
run: ${{ matrix.settings.build }}
186186
shell: bash
187187
- name: Upload artifact
188-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
188+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
189189
with:
190190
name: bindings-${{ matrix.settings.target }}
191191
path: |
@@ -236,7 +236,7 @@ jobs:
236236
rm -rf node_modules
237237
rm -rf target
238238
- name: Upload artifact
239-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
239+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
240240
with:
241241
name: bindings-x86_64-unknown-freebsd
242242
path: ./packages/core/*.node
@@ -288,14 +288,14 @@ jobs:
288288
cache: pnpm
289289
check-latest: true
290290
architecture: ${{ matrix.settings.architecture }}
291-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
291+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
292292
with:
293293
name: cli
294294
path: ./packages/cli/dist
295295
- name: Install dependencies
296296
run: pnpm install
297297
- name: Download artifacts
298-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
298+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
299299
with:
300300
name: bindings-${{ matrix.settings.target }}
301301
path: ./packages/core
@@ -363,15 +363,15 @@ jobs:
363363
}
364364
" >> $GITHUB_OUTPUT
365365
echo "PNPM_STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
366-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
366+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
367367
with:
368368
name: cli
369369
path: ./packages/cli/dist
370370
# use --force to download the all platform/arch dependencies
371371
- name: Install dependencies
372372
run: pnpm install --force
373373
- name: Download artifacts
374-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
374+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
375375
with:
376376
name: bindings-${{ matrix.target }}
377377
path: ./packages/core
@@ -411,14 +411,14 @@ jobs:
411411
with:
412412
node-version: 22
413413
cache: pnpm
414-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
414+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
415415
with:
416416
name: cli
417417
path: ./packages/cli/dist
418418
- name: Install dependencies
419419
run: pnpm install --force
420420
- name: Download artifacts
421-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
421+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
422422
with:
423423
name: bindings-wasm32-wasip1-threads
424424
path: ./packages/core
@@ -455,7 +455,7 @@ jobs:
455455
- name: Install dependencies
456456
run: pnpm install
457457
- name: Download all artifacts
458-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
458+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
459459
with:
460460
path: artifacts
461461
- name: Prepare publish
@@ -466,7 +466,7 @@ jobs:
466466
- name: List packages
467467
run: ls -R ./npm
468468
shell: bash
469-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
469+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
470470
with:
471471
name: cli
472472
path: ./packages/cli/dist

0 commit comments

Comments
 (0)