Skip to content

Commit

Permalink
chore(deps): update actions/cache action to v3 (#4318)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate Bot <bot@renovateapp.com>
  • Loading branch information
renovate[bot] and renovate-bot committed Mar 21, 2022
1 parent 139fe93 commit 4a099b2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
node-version: 17
- name: Cache Yarn
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-17-16-yarn-${{ hashFiles('yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/canary.yml
Expand Up @@ -41,7 +41,7 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
- name: Cache Yarn
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-17-16-yarn-${{ hashFiles('yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -30,7 +30,7 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
- name: Cache Yarn
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-17-16-yarn-${{ hashFiles('yarn.lock') }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
node-version: 17
- name: Cache Yarn
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{runner.os}}-17-16-yarn-${{hashFiles('yarn.lock')}}
Expand All @@ -40,7 +40,7 @@ jobs:
with:
node-version: 17
- name: Cache Yarn
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-17-16-yarn-${{ hashFiles('yarn.lock') }}
Expand All @@ -67,7 +67,7 @@ jobs:
with:
node-version: 17
- name: Cache Yarn
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-17-${{matrix.graphql_version}}-yarn-${{ hashFiles('yarn.lock') }}
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Cache Yarn
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{matrix.node-version}}-${{matrix.graphql_version}}-yarn-${{ hashFiles('yarn.lock') }}
Expand All @@ -113,7 +113,7 @@ jobs:
- name: Install Dependencies using Yarn
run: yarn install --ignore-engines && git checkout yarn.lock
- name: Cache Jest
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .cache/jest
key: ${{ runner.os }}-${{matrix.node-version}}-${{matrix.graphql_version}}-jest-${{ hashFiles('yarn.lock') }}
Expand All @@ -132,7 +132,7 @@ jobs:
with:
node-version: 17
- name: Cache Yarn
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-17-16-yarn-${{ hashFiles('yarn.lock') }}
Expand All @@ -155,7 +155,7 @@ jobs:
with:
node-version: 17
- name: Cache Yarn
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-17-16-yarn-${{ hashFiles('yarn.lock') }}
Expand Down

1 comment on commit 4a099b2

@vercel
Copy link

@vercel vercel bot commented on 4a099b2 Mar 21, 2022

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.