Skip to content

Commit

Permalink
chore(packages): update actions/cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 1, 2024
1 parent 6dedadc commit 9cfdb1f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
run: yarn add start-server-and-test
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
run: yarn add start-server-and-test
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down

0 comments on commit 9cfdb1f

Please sign in to comment.