Skip to content

Commit

Permalink
chore(deps): update actions/cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 27, 2025
1 parent 01089b3 commit a896838
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.2
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**/*.[jt]s', '**/*.[jt]sx') }}
Expand All @@ -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.2.2
with:
path: ${{ github.workspace }}/.next
key: ${{ github.ref }}-${{ github.sha }}
Expand Down Expand Up @@ -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.2.2
with:
path: ${{ github.workspace }}/.next
key: ${{ github.ref }}-${{ github.sha }}
Expand Down

0 comments on commit a896838

Please sign in to comment.