Skip to content

Commit

Permalink
chore: update cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Juveniel committed Sep 5, 2024
1 parent 16ce5f8 commit c06f651
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/disabled-workflows/ci_next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/disabled-workflows/publish_npm_next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_compile-themes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_create-screenshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_lint-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_lint-styles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_prime-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_render-test-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:

- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_test-contrast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_swatches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down

0 comments on commit c06f651

Please sign in to comment.