Skip to content

Commit

Permalink
deps: upgrade actions/cache to v2 in all templates (#750)
Browse files Browse the repository at this point in the history
  • Loading branch information
devrelm authored Jul 19, 2020
1 parent 1225a92 commit 984e024
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/basic/.github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
node-version: 12.x

- name: Use cached node_modules
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion templates/react-with-storybook/.github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
node-version: 12.x

- name: Use cached node_modules
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion templates/react/.github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
node-version: 12.x

- name: Use cached node_modules
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
Expand Down

1 comment on commit 984e024

@vercel
Copy link

@vercel vercel bot commented on 984e024 Jul 19, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.