Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/cache from 3 to 4 #568

Open
wants to merge 1 commit into
base: better-7.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- uses: dtinth/setup-github-actions-caching-for-turbo@v1

- name: Cache TypeCheck
uses: actions/cache@v3
uses: actions/cache@v4
if: matrix.check == 'ts'
with:
path: ./apps/meteor/tsconfig.typecheck.tsbuildinfo
Expand All @@ -60,7 +60,7 @@ jobs:
run: yarn turbo run typecheck

- name: Cache eslint
uses: actions/cache@v3
uses: actions/cache@v4
if: matrix.check == 'lint'
with:
path: ./apps/meteor/.eslintcache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:

- name: Cache Playwright binaries
if: inputs.type == 'ui'
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-playwright
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
install: true

- name: Cache vite
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./node_modules/.vite
key: vite-local-cache-${{ runner.OS }}-${{ hashFiles('package.json') }}
Expand Down
Loading