From 029b5068902e101cb037a1867989c90dbd6bd7b2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 17:12:59 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81aec2a..1798a74 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Cache global yarn cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /home/runner/.cache/yarn key: ${{ runner.OS }}-build-yarn-${{ hashFiles('yarn.lock') }} @@ -17,7 +17,7 @@ jobs: ${{ runner.OS }}-build-yarn-${{ env.cache-name }}- ${{ runner.OS }}-build-yarn- - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: ${{ runner.OS }}-build-${{ hashFiles('yarn.lock') }}