From db631bd7788a4d0242593bf5a2267dfddcc71d5f Mon Sep 17 00:00:00 2001 From: netkas Date: Mon, 17 Mar 2025 15:03:11 -0400 Subject: [PATCH] Update GitHub Actions to use upload-artifact@v4 for improved functionality --- .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 234899d..8d20500 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: run: echo "NCC_DIR=$(find build/ -type d -name 'ncc_*' | head -n 1)" >> $GITHUB_ENV - name: Upload NCC build directory - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ncc-build path: ${{ env.NCC_DIR }} @@ -59,7 +59,7 @@ jobs: run: zip -r redist.zip ${{ env.NCC_DIR }} - name: Upload redist.zip - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: redist-zip path: redist.zip @@ -72,7 +72,7 @@ jobs: run: echo "DEB_FILE=$(find build/ -type f -name '*.deb' | head -n 1)" >> $GITHUB_ENV - name: Upload Debian package - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ncc-deb path: ${{ env.DEB_FILE }}