From 240e49ed25bf1ffd916cc49de11b0f8772087989 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 08:56:05 +0000 Subject: [PATCH] chore(ci)(deps): bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...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/release.yml | 4 ++-- .github/workflows/rust-ci.yml | 2 +- .github/workflows/rust-test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) mode change 100755 => 100644 .github/workflows/release.yml mode change 100755 => 100644 .github/workflows/rust-ci.yml mode change 100755 => 100644 .github/workflows/rust-test.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml old mode 100755 new mode 100644 index 6b3656d..5bc08ee --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -115,14 +115,14 @@ jobs: - name: Upload artifacts (Unix) if: runner.os != 'Windows' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact_name }} path: ${{ matrix.artifact_name }}.tar.gz - name: Upload artifacts (Windows) if: runner.os == 'Windows' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact_name }} path: ${{ matrix.artifact_name }}.zip diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml old mode 100755 new mode 100644 index 8976823..6cbc10f --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -92,7 +92,7 @@ jobs: run: cargo build --release --package synap-cli --verbose - name: Upload artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: synap-${{ matrix.os }} path: | diff --git a/.github/workflows/rust-test.yml b/.github/workflows/rust-test.yml old mode 100755 new mode 100644 index 23db0c2..d28c5a3 --- a/.github/workflows/rust-test.yml +++ b/.github/workflows/rust-test.yml @@ -55,7 +55,7 @@ jobs: run: cargo nextest run --workspace || cargo test --workspace - name: Upload test report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: junit-${{ matrix.os }}.xml