Skip to content

Commit e629d7f

Browse files
committed
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
1 parent a98a2b3 commit e629d7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ jobs:
3838
run: php scripts/build-phar.php
3939

4040
- name: Upload the PHPCS phar
41-
uses: actions/upload-artifact@v4
41+
uses: actions/upload-artifact@v3
4242
with:
4343
name: phpcs-phar
4444
path: ./phpcs.phar
4545
if-no-files-found: error
4646
retention-days: 28
4747

4848
- name: Upload the PHPCBF phar
49-
uses: actions/upload-artifact@v4
49+
uses: actions/upload-artifact@v3
5050
with:
5151
name: phpcbf-phar
5252
path: ./phpcbf.phar
@@ -163,7 +163,7 @@ jobs:
163163

164164
- name: Download the PHPCS phar
165165
if: ${{ matrix.custom_ini == false }}
166-
uses: actions/download-artifact@v4
166+
uses: actions/download-artifact@v3
167167
with:
168168
name: phpcs-phar
169169

0 commit comments

Comments
 (0)