diff --git a/.github/workflows/ci-code-check.yml b/.github/workflows/ci-code-check.yml index fd214bc39488..8e0d1e8b2e24 100644 --- a/.github/workflows/ci-code-check.yml +++ b/.github/workflows/ci-code-check.yml @@ -45,7 +45,7 @@ jobs: - uses: rharkor/caching-for-turbo@v1.5 - name: Cache TypeCheck - uses: actions/cache@v3 + uses: actions/cache@v4 if: matrix.check == 'ts' with: path: ./apps/meteor/tsconfig.typecheck.tsbuildinfo @@ -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 diff --git a/.github/workflows/ci-test-e2e.yml b/.github/workflows/ci-test-e2e.yml index 31a8bc2ea2b6..6d85280c6709 100644 --- a/.github/workflows/ci-test-e2e.yml +++ b/.github/workflows/ci-test-e2e.yml @@ -192,7 +192,7 @@ jobs: - name: Cache Playwright binaries if: inputs.type == 'ui' - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-playwright with: path: | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 246c34423bb1..9e4fab5e9788 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -154,7 +154,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') }}