From 95c00c76ac00a8145a23d13085a20cd387142988 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 6 May 2026 22:45:22 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6be8762a..888ec45e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -89,7 +89,7 @@ jobs: - name: Install Chrome for headless testing run: pnpm test:install-deps - name: Restore integration test cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: examples/**/common/test/integration-test-cache.json key: integration-test-cache-${{ runner.os }}-${{ github.run_id }}-${{ github.run_attempt }} @@ -103,7 +103,7 @@ jobs: done exit 1 - name: Save integration test cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: success() with: path: examples/**/common/test/integration-test-cache.json