From fc7eb4203d2a7579d6a3ac0e42e90f558d4eef6d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 20:17:52 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ee6c7d1..caf492a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} cache: ${{ env.NODE_CACHE }} - name: Restore NextJs cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v4.0.2 with: path: ${{ github.workspace }}/.next/cache key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**/*.[jt]s', '**/*.[jt]sx') }} @@ -39,7 +39,7 @@ jobs: - name: Build application run: yarn build - name: Cache NextJs build - uses: actions/cache@v3.3.1 + uses: actions/cache@v4.0.2 with: path: ${{ github.workspace }}/.next key: ${{ github.ref }}-${{ github.sha }} @@ -79,7 +79,7 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile - name: Restore cached NextJs build - uses: actions/cache@v3.3.1 + uses: actions/cache@v4.0.2 with: path: ${{ github.workspace }}/.next key: ${{ github.ref }}-${{ github.sha }}