From cbca9bfdf5c0b5e3f22fed44883a09e2b282ad3a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 24 Sep 2025 15:00:53 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v3.5.0 --- .github/workflows/backend.yml | 2 +- .github/workflows/e2e.yml | 4 ++-- .github/workflows/frontend.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index b2115c67..c7f2a459 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -57,7 +57,7 @@ jobs: - name: Cache .venv 📦 id: cached-poetry-dependencies - uses: actions/cache@v3.0.6 + uses: actions/cache@v3.5.0 with: path: server/.venv key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 5f9906bb..aba13e1b 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -46,7 +46,7 @@ jobs: working-directory: client - name: Cache node_modules 📦 - uses: actions/cache@v3.0.6 + uses: actions/cache@v3.5.0 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -73,7 +73,7 @@ jobs: - name: Cache .venv 📦 id: cached-poetry-dependencies - uses: actions/cache@v3.0.6 + uses: actions/cache@v3.5.0 with: path: server/.venv key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 07f18b4d..3c188fca 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -42,7 +42,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache node_modules 📦 - uses: actions/cache@v3.0.6 + uses: actions/cache@v3.5.0 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }}