From 5c286121ecab7f867b29680ebea65989ae92280b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Mar 2026 00:38:11 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54fda541..0c4a6589 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-lint-modules-${{ hashFiles('**/yarn.lock') }} @@ -34,7 +34,7 @@ jobs: run: git config --global core.autocrlf input - name: Check out repository uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-test-modules-${{ hashFiles('**/yarn.lock') }} @@ -72,7 +72,7 @@ jobs: - name: Check out repository uses: actions/checkout@v2 - name: Load cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-docker-modules-v1-${{ hashFiles('**/yarn.lock') }}