diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3667af9..98c6614 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,19 +92,19 @@ jobs: run: cargo build - name: Upload Windows debug build if: runner.os == 'Windows' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: ./target/debug/rust-script.exe name: windows-binary - name: Upload macOS debug build if: runner.os == 'macOS' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: ./target/debug/rust-script name: mac-binary - name: Upload Linux debug build if: runner.os == 'Linux' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: ./target/debug/rust-script name: linux-binary