Skip to content

Commit

Permalink
ci(github-actions): update to actions/cache@4 (#1013)
Browse files Browse the repository at this point in the history
  • Loading branch information
chimurai committed Jun 22, 2024
1 parent 1c7178d commit c8d34f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
node-version: 22.x

- uses: actions/cache@v3
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: '**/node_modules'
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
with:
node-version: 22.x

- uses: actions/cache@v3
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: '**/node_modules'
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- uses: actions/cache@v3
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: '**/node_modules'
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
with:
node-version: 22.x

- uses: actions/cache@v3
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: '**/node_modules'
Expand Down

0 comments on commit c8d34f1

Please sign in to comment.