From eaa4022b706fb42e61824fc70411c9f3a5c6938e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sp=C3=B6ttel?= <1682504+fspoettel@users.noreply.github.com> Date: Fri, 1 Jul 2022 17:05:43 +0200 Subject: [PATCH] ci: use pipfile.lock as cache key --- .github/actions/setup-venv/action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/setup-venv/action.yml b/.github/actions/setup-venv/action.yml index c42420a..a40b3e3 100644 --- a/.github/actions/setup-venv/action.yml +++ b/.github/actions/setup-venv/action.yml @@ -30,8 +30,7 @@ runs: id: virtualenv-cache with: path: .venv - key: ${{ inputs.cache-prefix }}-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ hashFiles('requirements.txt', 'dev-requirements.txt') }} - + key: ${{ inputs.cache-prefix }}-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ hashFiles('Pipfile.lock') }} - if: steps.virtualenv-cache.outputs.cache-hit != 'true' shell: bash run: |