From 3c3c5691b60baf498aac71e4b84ca6eb2a90c5ed Mon Sep 17 00:00:00 2001 From: David Molineus Date: Wed, 25 Sep 2024 08:39:17 +0200 Subject: [PATCH] Update `upload-artifact` action version in diagnostics.yml Changed the `actions/upload-artifact` GitHub Action from version `v2` to `v4` to ensure compatibility with the latest features and improvements. This update helps maintain the workflow's reliability and performance. --- .github/workflows/diagnostics.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/diagnostics.yml b/.github/workflows/diagnostics.yml index 5afe496..2321a8d 100644 --- a/.github/workflows/diagnostics.yml +++ b/.github/workflows/diagnostics.yml @@ -69,7 +69,7 @@ jobs: run: ./vendor/bin/phpcq run -v -o github-action -o default --threshold=info - name: Upload build directory to artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 if: ${{ success() }} || ${{ failure() }} with: name: phpcq-builds-php-${{ matrix.php }}