From 28be6c65d7b74110b77c7c26527da42ca1e8f00a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jun 2026 10:34:33 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 5 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' 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 5e83bba..fc5410c 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@v5 + uses: actions/upload-artifact@v7 with: name: ${{ inputs.artifact-name }} path: ${{ inputs.artifact-path }} diff --git a/.github/workflows/rust-inner.yml b/.github/workflows/rust-inner.yml index 4c80c74..71ec892 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@v5 + uses: actions/upload-artifact@v7 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@v5 + uses: actions/upload-artifact@v7 with: name: testbinaries-${{ inputs.architecture }}-${{ inputs.features }} if-no-files-found: error