From 413036014c9b851b1370638dc876e536889c92a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 01:21:54 +0000 Subject: [PATCH] chore(ci): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7098e26..1fc98e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: - name: Cache node_modules id: cache-install - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | node_modules @@ -87,7 +87,7 @@ jobs: - name: Restore node_modules cache id: cache-restore - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | node_modules @@ -101,7 +101,7 @@ jobs: run: pnpm install --frozen-lockfile - name: Restore Turborepo cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: turbo-${{ runner.os }}-lint-${{ hashFiles('**/pnpm-lock.yaml', '**/package.json', '**/.eslintrc*', '**/eslint.config.js') }} @@ -135,7 +135,7 @@ jobs: - name: Restore node_modules cache id: cache-restore - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | node_modules @@ -149,7 +149,7 @@ jobs: run: pnpm install --frozen-lockfile - name: Restore Turborepo cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: turbo-${{ runner.os }}-typecheck-${{ hashFiles('**/pnpm-lock.yaml', '**/package.json', '**/tsconfig*.json') }} @@ -183,7 +183,7 @@ jobs: - name: Restore node_modules cache id: cache-restore - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | node_modules @@ -197,7 +197,7 @@ jobs: run: pnpm install --frozen-lockfile - name: Restore Turborepo cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: turbo-${{ runner.os }}-build-${{ hashFiles('**/pnpm-lock.yaml', '**/package.json', '**/turbo.json') }} @@ -211,7 +211,7 @@ jobs: run: pnpm build - name: Cache build artifacts - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | **/dist @@ -240,7 +240,7 @@ jobs: - name: Restore node_modules cache id: cache-restore - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | node_modules @@ -254,7 +254,7 @@ jobs: run: pnpm install --frozen-lockfile - name: Restore Turborepo cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: turbo-${{ runner.os }}-test-${{ hashFiles('**/pnpm-lock.yaml', '**/package.json', '**/turbo.json') }} @@ -315,7 +315,7 @@ jobs: - name: Restore node_modules cache id: cache-restore - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | node_modules