From e139468cc8fcaf330c4e54f297068592ec91a879 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 17:17:40 +0000 Subject: [PATCH] Update GitHub Artifact Actions --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1de4dfecb88..a5c44ba7d5c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,13 +56,13 @@ jobs: detailed_summary: true skip_success_summary: true - name: Archive HTML test reports - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: always() with: name: vitest-reports path: test/html_reports/* - name: Archive coverage report - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: always() with: name: vitest-coverage @@ -113,13 +113,13 @@ jobs: detailed_summary: true skip_success_summary: true - name: Archive HTML test reports - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: always() with: name: minitest-reports path: test/html_reports/* - name: Archive coverage report - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: always() with: name: minitest-coverage @@ -182,13 +182,13 @@ jobs: detailed_summary: true skip_success_summary: true - name: Archive HTML test reports - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: always() with: name: minitest-system-reports path: test/html_reports/* - name: Archive coverage report - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: always() with: name: minitest-system-coverage @@ -295,7 +295,7 @@ jobs: run: tar cfz doc-site.tar.gz ./doc-site/build - name: Store built site if: github.event_name == 'push' && github.event.ref == 'refs/heads/main' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: doc-site path: doc-site.tar.gz @@ -311,17 +311,17 @@ jobs: - name: Check out repository uses: actions/checkout@v5 - name: Download Minitest coverage - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: name: minitest-coverage path: minitest-coverage - name: Download Minitest system test coverage - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: name: minitest-system-coverage path: minitest-system-coverage - name: Download Vitest coverage - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: name: vitest-coverage path: vitest-coverage