From 7552ac1720c2b75508a0f44d1a8adfb717165011 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 08:11:32 +0000 Subject: [PATCH] github-actions(deps): 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/build-docs.yml | 4 ++-- .github/workflows/ci.yml | 4 ++-- .github/workflows/e2e.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 48bc99a699..ec890bc91d 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -34,7 +34,7 @@ jobs: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT - name: Setup pnpm cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.get-store-path.outputs.STORE_PATH }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -42,7 +42,7 @@ jobs: ${{ runner.os }}-pnpm-store- # - name: Cache turbo - # uses: actions/cache@v4 + # uses: actions/cache@v5 # with: # path: .turbo # key: ${{ runner.os }}-turbo-${{ github.sha }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00b61d8d75..ca7bb3f87f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT - name: Setup pnpm cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.get-store-path.outputs.STORE_PATH }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -56,7 +56,7 @@ jobs: # to cache p:build, format, lint, type-check and test-run - name: Setup turbo cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-${{ github.sha }} diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index a49b764d75..4f7992ffc2 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -53,7 +53,7 @@ jobs: - name: Setup pnpm cache # since this always runs after CI, there's no need to save the cache afterwards, since it's guaranteed to be the same - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.get-store-path.outputs.STORE_PATH }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -62,7 +62,7 @@ jobs: # mostly to skip preconstruct build - name: Setup turbo cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: .turbo key: ${{ runner.os }}-turbo-${{ github.sha }}