From c7189a68c26bd9118bb1d90944621b535d301aae Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:15:38 +0800 Subject: [PATCH] chore(deps): update actions/download-artifact action to v4 (#1856) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/download-artifact](https://togithub.com/actions/download-artifact) | action | major | `v3` -> `v4` | --- ### Release Notes
actions/download-artifact (actions/download-artifact) ### [`v4`](https://togithub.com/actions/download-artifact/compare/v3...v4) [Compare Source](https://togithub.com/actions/download-artifact/compare/v3...v4)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/napi-rs/napi-rs). --- .github/workflows/test-release.yaml | 8 ++++---- .github/workflows/zig.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test-release.yaml b/.github/workflows/test-release.yaml index 36bec0ac..f0594c8f 100644 --- a/.github/workflows/test-release.yaml +++ b/.github/workflows/test-release.yaml @@ -292,11 +292,11 @@ jobs: chmod 777 -R .cargo-cache chmod 777 -R target - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ${{ matrix.settings.target }}-example path: examples/napi/index.node - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ${{ matrix.settings.target }}-example-compat path: examples/napi-compat-mode/index.node @@ -338,11 +338,11 @@ jobs: with: node-version: 18 cache: 'yarn' - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: ${{ matrix.settings.target }}-example path: examples/napi/index.node - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: ${{ matrix.settings.target }}-example-compat path: examples/napi-compat-mode/index.node diff --git a/.github/workflows/zig.yaml b/.github/workflows/zig.yaml index ea192eba..b1b025ec 100644 --- a/.github/workflows/zig.yaml +++ b/.github/workflows/zig.yaml @@ -66,13 +66,13 @@ jobs: run: | yarn build:test -- --target ${{ matrix.target }} --cross-compile - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: compat-${{ matrix.target }} path: ./examples/napi-compat-mode/index.node if-no-files-found: error - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: napi-${{ matrix.target }} path: ./examples/napi/index.node @@ -107,12 +107,12 @@ jobs: yarn config set --json supportedArchitectures.cpu '["current", "arm64"]' yarn install --immutable --mode=skip-build - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: napi-${{ matrix.settings.target }} path: ./examples/napi/ - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: compat-${{ matrix.settings.target }} path: ./examples/napi-compat-mode/