From 5798c37c9390a89a3f3dfa891da0a222f96bcce9 Mon Sep 17 00:00:00 2001 From: Cid Lopes Date: Tue, 17 Sep 2024 11:48:47 +0300 Subject: [PATCH 1/2] Bump actions/upload-artifact to v4 --- .github/workflows/action.yml | 2 +- .github/workflows/ide.yml | 2 +- .github/workflows/phan.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 60e1298a8..3af93b2fe 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -49,7 +49,7 @@ jobs: ./vendor/bin/phpcs --standard=ruleset.xml --report=checkstyle --report-file=chkphpcs.xml - name: Archive code sniffing results - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: phpcs-xml-result path: chkphpcs.xml diff --git a/.github/workflows/ide.yml b/.github/workflows/ide.yml index c0bd9ffd2..ed18d83b8 100644 --- a/.github/workflows/ide.yml +++ b/.github/workflows/ide.yml @@ -74,7 +74,7 @@ jobs: - name: Archive inspection results if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: inspection-results path: output diff --git a/.github/workflows/phan.yml b/.github/workflows/phan.yml index ebe9fe77a..61e8cf7cc 100644 --- a/.github/workflows/phan.yml +++ b/.github/workflows/phan.yml @@ -66,7 +66,7 @@ jobs: continue-on-error: true - name: Archive static analysis results - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: phan-analysis-results path: chkphan.xml From 9e66dfab4c0e5797ee1fdfd02d4c4a04c05dd775 Mon Sep 17 00:00:00 2001 From: Cid Lopes Date: Tue, 17 Sep 2024 11:51:28 +0300 Subject: [PATCH 2/2] Bump actions/upload-artifact to v4 --- .github/workflows/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 3af93b2fe..cbd38ee4a 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -100,7 +100,7 @@ jobs: run: ./vendor/bin/phpmd . xml codesize,naming,unusedcode,controversial,design --exclude vendor,var,build,tests --reportfile pmdphpmd.xml --ignore-violations-on-exit - name: Archive mess detection results - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: phpmd-xml-result path: pmdphpmd.xml @@ -153,7 +153,7 @@ jobs: run: composer archive --format=zip --file=archive - name: Archive built arhive - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: composer-zip-archive path: archive.zip