From 56939f8dfc5a7fa743243540794c7a115a8bd79a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 16:26:28 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .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 e823541..977055d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - name: git checkout uses: actions/checkout@v4 - name: Cache yarn dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{steps.find-yarn-cache.outputs.dir}} key: ${{runner.os}}-node${{matrix.node-version}}-yarn-${{hashFiles('**/yarn.lock')}} @@ -42,7 +42,7 @@ jobs: - name: git checkout uses: actions/checkout@v4 - name: Cache yarn dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{steps.find-yarn-cache.outputs.dir}} key: ${{runner.os}}-node${{env.DEPLOY_NODE_VERSION}}-yarn-${{hashFiles('**/yarn.lock')}}