From 5cb2e37512e56de277673aa176f7fb8764639237 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 12:12:52 +0000 Subject: [PATCH] chore(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/maven.yml | 2 +- .github/workflows/rust-inner.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 5af590f..2395477 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -71,7 +71,7 @@ jobs: # Save the generated Maven Artifacts, for later processing in other steps - name: Save Package as Artifact if: ${{ inputs.artifact-name != '' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ inputs.artifact-name }} path: ${{ inputs.artifact-path }} diff --git a/.github/workflows/rust-inner.yml b/.github/workflows/rust-inner.yml index 99585c8..4fe8004 100644 --- a/.github/workflows/rust-inner.yml +++ b/.github/workflows/rust-inner.yml @@ -64,7 +64,7 @@ jobs: echo EOF } >> "$GITHUB_ENV" - name: Upload (bins) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: binaries-${{ inputs.architecture }}-${{ inputs.features }} if-no-files-found: error @@ -72,7 +72,7 @@ jobs: ${{ env.bins }} - name: Upload (test, native only) if: inputs.architecture == 'amd64' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: testbinaries-${{ inputs.architecture }}-${{ inputs.features }} if-no-files-found: error