From 8fbfa15414951f45f531f09a654fec76c96aa7d0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 09:10:35 +0000 Subject: [PATCH] Bump actions/upload-artifact in the github-actions-dependencies group Bumps the github-actions-dependencies group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `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 dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 047f5f4..9a99f7d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -103,7 +103,7 @@ jobs: run: cargo build --release --target ${{ matrix.target.rustTarget }} - name: Upload Asset - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ env.APP_NAME }}-${{ matrix.target.rustTarget }}${{ endsWith(matrix.target.rustTarget, '-windows-gnu') && '.exe' || '' }} path: ./target/${{ matrix.target.rustTarget }}/release/${{ env.APP_NAME }}${{ endsWith(matrix.target.rustTarget, '-windows-gnu') && '.exe' || '' }} @@ -130,7 +130,7 @@ jobs: - name: Upload Test Artifact if: ${{ matrix.target.testTarget != '' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: http_trace_server-${{ matrix.target.testTarget }}-${{ matrix.target.rustTarget }} path: ./publish/${{ matrix.target.testTarget }}