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