From ee00afcbc7912e67e10aca7b9a5759776d659d88 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 31 Dec 2023 10:37:18 +0100 Subject: [PATCH] GH Actions: re-attempt upgrade actions/[upload|download]-artifact from 3 to 4 The upstream issue appears to have been fixed. Let's try this again. Re-does PR 172+173 and reverts PR 204. Ref: actions/download-artifact 249 Fixes 208 --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 970be4bf63..7a6c6677d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: run: php scripts/build-phar.php - name: Upload the PHPCS phar - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: phpcs-phar path: ./phpcs.phar @@ -48,7 +48,7 @@ jobs: retention-days: 28 - name: Upload the PHPCBF phar - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: phpcbf-phar path: ./phpcbf.phar @@ -165,7 +165,7 @@ jobs: - name: Download the PHPCS phar if: ${{ matrix.custom_ini == false }} - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: phpcs-phar