From 1a7b263bfb8602d2590e3721ce1422879d1c2e9d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 25 Sep 2025 15:59:30 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/actions/prepare/action.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/prepare/action.yml b/.github/actions/prepare/action.yml index 4cc231f..27c6166 100644 --- a/.github/actions/prepare/action.yml +++ b/.github/actions/prepare/action.yml @@ -27,7 +27,7 @@ runs: run: | echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abcb601..88cd8d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: uses: ./.github/actions/prepare - name: Cache build artifacts - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: '**/dist' key: build-artifacts-${{ github.sha }}