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