Skip to content

Commit

Permalink
chore(ci): use cache v2 (#6458)
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Jun 7, 2020
1 parent 965b3ca commit 0318efe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Expand Up @@ -76,15 +76,15 @@ jobs:

- name: Cache Yarn packages
id: yarn_cache_packages
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ${{ env.YARN_CACHE_FOLDER }}
key: ${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-
- name: Cache node_modules
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: node_modules
key: ${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -149,15 +149,15 @@ jobs:

- name: Cache Yarn packages
id: yarn_cache_packages
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ${{ env.YARN_CACHE_FOLDER }}
key: ${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-
- name: Cache node_modules
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: node_modules
key: ${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -210,13 +210,13 @@ jobs:
fetch-depth: 0

- name: Cache Yarn packages
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ${{ env.YARN_CACHE_FOLDER }}
key: ${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}

- name: Cache node_modules
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: node_modules
key: ${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-npm.yml
Expand Up @@ -35,13 +35,13 @@ jobs:

- name: Cache Yarn packages
id: yarn_cache_packages
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ${{ env.YARN_CACHE_FOLDER }}
key: ${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}

- name: Cache node_modules
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: node_modules
key: ${{ env.YARN_MODULES_CACHE_KEY }}-${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down

0 comments on commit 0318efe

Please sign in to comment.