From 1310c6f0434f5942a6de99b77b9f66d9a386c0b9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 14:47:32 +0800 Subject: [PATCH] chore(deps): update actions/cache action to v4 (#426) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97f4f29e..3a95bd45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: # Use cache to share the output across different jobs # No need to cache node_modules because they are all bundled - - uses: actions/cache/save@v3 + - uses: actions/cache/save@v4 id: cache with: path: outfile.cjs @@ -110,7 +110,7 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'pnpm' - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 id: cache-restore with: path: outfile.cjs @@ -135,7 +135,7 @@ jobs: - if: ${{ contains(matrix.flag-for-e2e, '--cypress') }} name: Cache Cypress binaries id: cache-cypress - uses: actions/cache@v3 + uses: actions/cache@v4 with: # TODO: avoid snowballing by adding version key: ${{ runner.os }}-cypress-bin @@ -143,7 +143,7 @@ jobs: - if: ${{ contains(matrix.flag-for-e2e, '--playwright') }} name: Cache Playwright's binary - uses: actions/cache@v3 + uses: actions/cache@v4 with: # Playwright removes unused browsers automatically # So does not need to add playwright version to key -- 2.39.5