Skip to content

Commit

Permalink
Update actions/cache action to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Mar 22, 2022
1 parent 7553172 commit 40559dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-lint-modules-${{ hashFiles('**/yarn.lock') }}
Expand All @@ -33,7 +33,7 @@ jobs:
run: git config --global core.autocrlf input
- name: Check out repository
uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-test-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Check out repository
uses: actions/checkout@v2
- name: Load cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-docs-modules-v1-${{ hashFiles('**/yarn.lock') }}
Expand Down

0 comments on commit 40559dc

Please sign in to comment.