From 741a3372785f3212fbc862f28c9c39f6a0309cda Mon Sep 17 00:00:00 2001 From: "Max P." Date: Wed, 30 Apr 2025 17:34:04 +0200 Subject: [PATCH] fix(build-and-deploy): revert cache action to v1 and simplify cache key Signed-off-by: Max P. --- .github/workflows/build-and-deploy.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index e06d8a2..e6fe974 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -20,11 +20,9 @@ jobs: python-version: "3.12" - name: 🔄 Restore cache - uses: https://git.0xmax42.io/actions/cache@v2 + uses: https://git.0xmax42.io/actions/cache@v1 with: - keys: | - poetry-v1-${{ runner.os }}-${{ hashFiles('poetry.lock') }} - poetry-v1-${{ runner.os }} + key: poetry-v1-${{ runner.os }}-${{ hashFiles('poetry.lock') }} paths: | ~/.cache/pypoetry ~/.cache/pip