From fbd781bd42d54fdf178cd517c4145e0ac7245921 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 8 Dec 2024 18:21:08 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .github/workflows/build.yml | 4 ++-- .github/workflows/pull.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ae4f3b24..7f3540b7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Cache pnpm modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-pnpm-modules with: @@ -33,7 +33,7 @@ jobs: key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | ${{ github.workspace }}/.next/cache diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index 37a3a41d..e85819fb 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -20,7 +20,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Cache pnpm modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-pnpm-modules with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 59c10727..3e36a1ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: node-version: 16.x - name: Cache pnpm modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-pnpm-modules with: