From 33f1200b17e22009da0e0b50808fd6db4ae107c3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 18:38:24 +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..89271a3 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.1.1 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.1.1 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.1.1 with: path: ${{ github.workspace }}/.next key: ${{ github.ref }}-${{ github.sha }}