From 147a96702ec3cfe81606725b96cf29c06d4975e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 09:25:08 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact Bumps the github-actions-dependencies group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' 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 955cb5d..a30de3a 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@v6 + uses: actions/upload-artifact@v7 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@v6 + uses: actions/upload-artifact@v7 with: name: http_trace_server-${{ matrix.target.testTarget }}-${{ matrix.target.rustTarget }} path: ./publish/${{ matrix.target.testTarget }}