From 2ece796ddd3e25c264cc0a0c7971353c577ca42d Mon Sep 17 00:00:00 2001 From: SpikeHD Date: Mon, 29 Jan 2024 10:31:12 -0800 Subject: [PATCH] fix: upload v4 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5185164..87d1a97 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,14 +58,14 @@ jobs: run: cd ./frontend && npm run build && cd ../backend && cargo build --release ${{ matrix.feature }} - name: Upload - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: matrix.platform != 'windows-latest' with: name: procchi-${{ matrix.platform }}-${{ matrix.feature == '--no-default-features' && 'minimal' || 'all-features' }} path: backend/target/release/procchi - name: Upload (Windows) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: matrix.platform == 'windows-latest' with: name: procchi-${{ matrix.platform }}-${{ matrix.feature == '--no-default-features' && 'minimal' || 'all-features' }}