From 9c34478c83e3a038a30e3f331686a56aefb7d0b4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 05:29:11 +0000 Subject: [PATCH] chore(deps): update github artifact actions --- .github/workflows/example-build-artifacts.yml | 4 ++-- .github/workflows/example-chrome.yml | 4 ++-- .github/workflows/example-firefox.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/example-build-artifacts.yml b/.github/workflows/example-build-artifacts.yml index 91ed71802..e2025c291 100644 --- a/.github/workflows/example-build-artifacts.yml +++ b/.github/workflows/example-build-artifacts.yml @@ -33,7 +33,7 @@ jobs: build: npm run build working-directory: examples/nextjs - name: Store build artifacts - uses: actions/upload-artifact@v4 # https://github.com/actions/upload-artifact + uses: actions/upload-artifact@v5 # https://github.com/actions/upload-artifact with: name: app path: examples/nextjs/build @@ -52,7 +52,7 @@ jobs: uses: actions/checkout@v5 - name: Restore build artifacts - uses: actions/download-artifact@v4 # https://github.com/actions/download-artifact + uses: actions/download-artifact@v6 # https://github.com/actions/download-artifact with: name: app path: examples/nextjs/build diff --git a/.github/workflows/example-chrome.yml b/.github/workflows/example-chrome.yml index 596363e4c..dcbb53a33 100644 --- a/.github/workflows/example-chrome.yml +++ b/.github/workflows/example-chrome.yml @@ -36,7 +36,7 @@ jobs: # As of Cypress v8.0 the `cypress run` command # executes tests in `headless` mode by default - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: screenshots-headless-chrome path: examples/browser/cypress/screenshots @@ -54,7 +54,7 @@ jobs: headed: true summary-title: 'Chrome headed' - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: screenshots-headed-chrome path: examples/browser/cypress/screenshots diff --git a/.github/workflows/example-firefox.yml b/.github/workflows/example-firefox.yml index e340463b1..aeff6c17a 100644 --- a/.github/workflows/example-firefox.yml +++ b/.github/workflows/example-firefox.yml @@ -23,7 +23,7 @@ jobs: browser: firefox # report screenshot size and store the screenshots as test artifacts - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: screenshots-in-firefox path: examples/browser/cypress/screenshots