From e629d7f2b05885bee179b269b17b3febec862bd3 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 31 Dec 2023 10:29:53 +0100 Subject: [PATCH] GH Actions: downgrade actions/[upload|download]-artifact back from 4 to 3 I'm getting sick and tired of having to restart builds due to artifacts not downloading correctly. This bug has been reported to the action runner and upgrading to v4 should not be re-attempted until the issue has been resolved. Effectively reverts Dependabot PR 172 (and 173). Ref: actions/download-artifact 249 --- .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 71d8f0c2ec..2527c4b8bb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: run: php scripts/build-phar.php - name: Upload the PHPCS phar - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: phpcs-phar path: ./phpcs.phar @@ -46,7 +46,7 @@ jobs: retention-days: 28 - name: Upload the PHPCBF phar - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: phpcbf-phar path: ./phpcbf.phar @@ -163,7 +163,7 @@ jobs: - name: Download the PHPCS phar if: ${{ matrix.custom_ini == false }} - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: phpcs-phar