From 7d271472b1dcfafe54ff84c64a23505f04509ba3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 04:14:45 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build_binary.yml | 10 +++++----- .github/workflows/build_library.yml | 8 ++++---- .github/workflows/ci.yml | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build_binary.yml b/.github/workflows/build_binary.yml index 68a078162fa..ca4548e354b 100644 --- a/.github/workflows/build_binary.yml +++ b/.github/workflows/build_binary.yml @@ -50,7 +50,7 @@ jobs: zip relay-Linux-x86_64-debug.zip relay.debug mv relay relay-Linux-x86_64 - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: artifact-linux path: target/release/relay-Linux-x86_64* @@ -85,7 +85,7 @@ jobs: zip relay-Linux-aarch64-debug.zip relay.debug mv relay relay-Linux-aarch64 - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: artifact-linux-aarch64 path: target/release/relay-Linux-aarch64* @@ -118,7 +118,7 @@ jobs: mv relay relay-Darwin-x86_64 zip -r relay-Darwin-x86_64-dsym.zip relay.dSYM - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: artifact-macos path: target/release/relay-Darwin-x86_64* @@ -150,7 +150,7 @@ jobs: 7z a relay-Windows-x86_64-pdb.zip relay.pdb mv relay.exe relay-Windows-x86_64.exe - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: artifact-windows path: target/release/relay-Windows-x86_64* @@ -167,7 +167,7 @@ jobs: # there cannot be mutliple upload-artifacts with the same name, in a sha's workflow runs. # However in this case it is fine because this only runs on release/** branches, # and the other runs on release-library/** branches. - - uses: actions/upload-artifact/merge@v4 + - uses: actions/upload-artifact/merge@v5 with: # Craft expects release assets to be a single artifact named after the sha. name: ${{ github.sha }} diff --git a/.github/workflows/build_library.yml b/.github/workflows/build_library.yml index 6923e60565c..7a22962af3a 100644 --- a/.github/workflows/build_library.yml +++ b/.github/workflows/build_library.yml @@ -36,7 +36,7 @@ jobs: env: TARGET: ${{ matrix.build-arch }} - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: artifact-linux-${{ matrix.build-arch }} path: py/dist/* @@ -89,7 +89,7 @@ jobs: # consumed by cargo and setup.py to obtain the target dir CARGO_BUILD_TARGET: ${{ matrix.target }} - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: artifact-macos-${{ matrix.py-platform }} path: py/dist/* @@ -122,7 +122,7 @@ jobs: run: python setup.py sdist working-directory: py - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: artifact-sdist path: py/dist/* @@ -139,7 +139,7 @@ jobs: # there cannot be mutliple upload-artifacts with the same name, in a sha's workflow runs. # However in this case it is fine because this only runs on release-library/** branches, # and the other runs on release/** branches. - - uses: actions/upload-artifact/merge@v4 + - uses: actions/upload-artifact/merge@v5 with: # Craft expects release assets to be a single artifact named after the sha. name: ${{ github.sha }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54a91fef1d1..6defc2a0b9a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -384,7 +384,7 @@ jobs: cp "${RELAY_BIN}"{,-debug.zip,.src.zip} "artifacts/${DOCKER_PLATFORM}" - name: Upload Artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: retention-days: 1 name: ${{ matrix.image_name }}@${{ matrix.target }} @@ -470,7 +470,7 @@ jobs: done - name: Upload Artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: retention-days: 1 name: internal-${{ matrix.image_name }}@${{ matrix.target }} @@ -534,7 +534,7 @@ jobs: - name: Upload docker image if: "github.event.pull_request.head.repo.fork || github.actor == 'dependabot[bot]'" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: retention-days: 1 name: ${{ matrix.image_name }}-docker-image