From 8d7feccc2d990da8c5545273ca3c42ca73181ec2 Mon Sep 17 00:00:00 2001 From: tottoto <tottotodev@gmail.com> Date: Fri, 28 Feb 2025 00:10:38 +0900 Subject: [PATCH] Update to upload-artifact 4 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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