From 4706d0ea39433617d1d7af3ca060b051155edcb8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 02:34:11 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-code-check.yml | 4 ++-- .github/workflows/ci-test-e2e.yml | 2 +- .github/workflows/ci.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-code-check.yml b/.github/workflows/ci-code-check.yml index 75deb399d2f2a..e9d1a7088b29b 100644 --- a/.github/workflows/ci-code-check.yml +++ b/.github/workflows/ci-code-check.yml @@ -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 @@ -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 3f75695b48771..e31b573a68649 100644 --- a/.github/workflows/ci-test-e2e.yml +++ b/.github/workflows/ci-test-e2e.yml @@ -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: | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8f8d29610bb3..d11d2c646c1ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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') }}