From 63ec4a6953af6da6c23e646ac5069cc7af78e7ee Mon Sep 17 00:00:00 2001 From: zwitschi Date: Wed, 12 Nov 2025 10:51:58 +0100 Subject: [PATCH] fix: Update pip cache directory usage in CI workflow --- .gitea/workflows/ci_backup.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci_backup.yml b/.gitea/workflows/ci_backup.yml index 108c533..9e3552b 100644 --- a/.gitea/workflows/ci_backup.yml +++ b/.gitea/workflows/ci_backup.yml @@ -11,6 +11,7 @@ jobs: runs-on: ubuntu-latest env: APT_CACHER_NG: http://192.168.88.14:3142 + PIP_CACHE_DIR: /root/.cache/pip steps: - uses: actions/checkout@v4 @@ -29,7 +30,7 @@ jobs: - name: Cache pip dependencies uses: actions/cache@v4 with: - path: ${{ steps.pip-cache.outputs.path }} + path: ${{ PIP_CACHE_DIR }} key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt', 'requirements-test.txt', 'pyproject.toml') }} restore-keys: | ${{ runner.os }}-pip-