Skip to content

Commit 984e024

Browse files
authored
deps: upgrade actions/cache to v2 in all templates (#750)
1 parent 1225a92 commit 984e024

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

templates/basic/.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
node-version: 12.x
1515

1616
- name: Use cached node_modules
17-
uses: actions/cache@v1
17+
uses: actions/cache@v2
1818
with:
1919
path: node_modules
2020
key: nodeModules-${{ hashFiles('**/yarn.lock') }}

templates/react-with-storybook/.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
node-version: 12.x
1515

1616
- name: Use cached node_modules
17-
uses: actions/cache@v1
17+
uses: actions/cache@v2
1818
with:
1919
path: node_modules
2020
key: nodeModules-${{ hashFiles('**/yarn.lock') }}

templates/react/.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
node-version: 12.x
1515

1616
- name: Use cached node_modules
17-
uses: actions/cache@v1
17+
uses: actions/cache@v2
1818
with:
1919
path: node_modules
2020
key: nodeModules-${{ hashFiles('**/yarn.lock') }}

0 commit comments

Comments
 (0)