From f214627d7396272eca3bf093675f1fd7e8a2f758 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 21:38:21 +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 | 8 ++++---- .github/workflows/tests.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2cd3b77e..3f43f095 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -42,7 +42,7 @@ jobs: # Upload compiled PHAR as artifact - name: Upload artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: phar path: | @@ -69,7 +69,7 @@ jobs: # Download PHAR and Dockerfile - name: Download artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: phar - name: Make PHAR executable @@ -159,7 +159,7 @@ jobs: # Download PHAR file - name: Download artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: phar - name: Make PHAR executable @@ -215,7 +215,7 @@ jobs: # Download PHAR - name: Download artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: phar - name: Make PHAR executable diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index ac5275b5..0d61f5f9 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -88,7 +88,7 @@ jobs: working-directory: .build/coverage run: sed -i 's#/home/runner/work/cache-warmup/cache-warmup#${{ 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 @@ -106,7 +106,7 @@ jobs: # Download artifact - name: Download coverage artifact id: download - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: coverage