From b0cf588d5ebe0e95d35fce974e9814b213782fe3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 06:58:29 +0300 Subject: [PATCH] Bump actions/upload-artifact from 4.4.1 to 4.4.3 (#58) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/main.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c0bd7b3..54adb0d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,19 +44,19 @@ jobs: - run: tar -cvf Out/macOSRelease.tar -C target/x86_64-apple-darwin/release/bundle/osx/ $(ls target/x86_64-apple-darwin/release/bundle/osx/) - run: tar -cvf OutDebug/macOSDebugAppleSilicon.tar -C target/aarch64-apple-darwin/debug/bundle/osx/ $(ls target/aarch64-apple-darwin/debug/bundle/osx/) - run: tar -cvf Out/macOSReleaseAppleSilicon.tar -C target/aarch64-apple-darwin/release/bundle/osx/ $(ls target/aarch64-apple-darwin/release/bundle/osx/) - - uses: actions/upload-artifact@v4.4.1 + - uses: actions/upload-artifact@v4.4.3 with: name: macOS Debug path: OutDebug/macOSDebug.tar - - uses: actions/upload-artifact@v4.4.1 + - uses: actions/upload-artifact@v4.4.3 with: name: macOS Release path: Out/macOSRelease.tar - - uses: actions/upload-artifact@v4.4.1 + - uses: actions/upload-artifact@v4.4.3 with: name: macOS Apple Silicon Debug path: OutDebug/macOSDebugAppleSilicon.tar - - uses: actions/upload-artifact@v4.4.1 + - uses: actions/upload-artifact@v4.4.3 with: name: macOS Apple Silicon Release path: Out/macOSReleaseAppleSilicon.tar @@ -72,11 +72,11 @@ jobs: - run: cargo install cargo-bundle - run: cargo bundle - run: cargo bundle --release - - uses: actions/upload-artifact@v4.4.1 + - uses: actions/upload-artifact@v4.4.3 with: name: Linux Debug path: target/debug/bundle/deb/*.deb - - uses: actions/upload-artifact@v4.4.1 + - uses: actions/upload-artifact@v4.4.3 with: name: Linux Release path: target/release/bundle/deb/*.deb @@ -89,11 +89,11 @@ jobs: - uses: dtolnay/rust-toolchain@nightly - run: cargo build -Zunstable-options --out-dir=out-debug - run: cargo build --release -Zunstable-options --out-dir=out - - uses: actions/upload-artifact@v4.4.1 + - uses: actions/upload-artifact@v4.4.3 with: name: Windows Debug path: out-debug/*.exe - - uses: actions/upload-artifact@v4.4.1 + - uses: actions/upload-artifact@v4.4.3 with: name: Windows Release path: out/*.exe