From 77277c89ce33b1a1b6892473ece131dcd0eb3a5a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 22:01:20 +0000 Subject: [PATCH] [TASK] Update GitHub artifact actions | datasource | package | from | to | | ----------- | ------------------------- | ---- | -- | | github-tags | actions/download-artifact | v7 | v8 | | github-tags | actions/upload-artifact | v6 | v7 | --- .github/workflows/release.yaml | 4 ++-- .github/workflows/tests.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2e6d4fb..0e3ce1e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -41,7 +41,7 @@ jobs: # Upload compiled PHAR as artifact - name: Upload artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: phar path: | @@ -66,7 +66,7 @@ jobs: # Download PHAR - name: Download artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: phar path: .build diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 42c5b62..475037b 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -70,7 +70,7 @@ jobs: working-directory: .build/coverage run: sed -i 's#/home/runner/work/frontend-asset-handler/frontend-asset-handler#${{ github.workspace }}#g' clover.xml - name: Upload coverage artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: coverage path: .build/coverage/clover.xml @@ -88,7 +88,7 @@ jobs: # Download artifact - name: Download coverage artifact id: download - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: coverage