Skip to content

Commit

Permalink
Bump actions/cache from 2 to 3.0.1
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v2...v3.0.1)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed May 21, 2022
1 parent 298e7ab commit 397d718
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ jobs:

- name: Cache cypress
id: cache-cypress
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/.cache/Cypress
key: ${{ runner.OS }}-cache-cypress-${{ hashFiles('**/package-lock.json', '.github/workflows/build_and_test.yml') }}
- uses: c-hive/gha-yarn-cache@v2
- name: Cache turbo
id: cache-turbo
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
./node_modules/.turbo
Expand All @@ -73,15 +73,15 @@ jobs:
# TODO change to use turbo cache
- name: Cache meteor local
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ./apps/meteor/.meteor/local
key: ${{ runner.OS }}-meteor_cache-${{ hashFiles('apps/meteor/.meteor/versions') }}
restore-keys: |
${{ runner.os }}-meteor_cache-
${{ runner.os }}-
- name: Cache meteor
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.meteor
key: ${{ runner.OS }}-meteor-${{ hashFiles('apps/meteor/.meteor/release') }}
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:

- name: Cache cypress
id: cache-cypress
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/.cache/Cypress
key: ${{ runner.OS }}-cache-cypress-${{ hashFiles('**/package-lock.json', '.github/workflows/build_and_test.yml') }}
Expand All @@ -224,7 +224,7 @@ jobs:
- uses: c-hive/gha-yarn-cache@v2
- name: Cache turbo
id: cache-turbo
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
./node_modules/.turbo
Expand Down Expand Up @@ -347,14 +347,14 @@ jobs:

- name: Cache cypress
id: cache-cypress
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/.cache/Cypress
key: ${{ runner.OS }}-cache-cypress-${{ hashFiles('**/package-lock.json', '.github/workflows/build_and_test.yml') }}
- uses: c-hive/gha-yarn-cache@v2
- name: Cache turbo
id: cache-turbo
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
./node_modules/.turbo
Expand Down Expand Up @@ -491,7 +491,7 @@ jobs:
- uses: c-hive/gha-yarn-cache@v2
- name: Cache turbo
id: cache-turbo
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
./node_modules/.turbo
Expand All @@ -501,15 +501,15 @@ jobs:
${{ runner.os }}-
- name: Cache meteor local
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ./apps/meteor/.meteor/local
key: ${{ runner.OS }}-meteor_cache-${{ hashFiles('.meteor/versions') }}
restore-keys: |
${{ runner.os }}-meteor_cache-
${{ runner.os }}-
- name: Cache meteor
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.meteor
key: ${{ runner.OS }}-meteor-${{ hashFiles('.meteor/release') }}
Expand Down Expand Up @@ -614,7 +614,7 @@ jobs:
- uses: c-hive/gha-yarn-cache@v2
- name: Cache turbo
id: cache-turbo
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
./node_modules/.turbo
Expand Down Expand Up @@ -867,7 +867,7 @@ jobs:
- uses: c-hive/gha-yarn-cache@v2
- name: Cache turbo
id: cache-turbo
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
./node_modules/.turbo
Expand Down

0 comments on commit 397d718

Please sign in to comment.