use different cache key for pyenv

This commit is contained in:
Rahul Patil
2024-09-05 14:57:39 +02:00
parent b41ef842ea
commit b409133a42
3 changed files with 3 additions and 3 deletions

View File

@@ -88,7 +88,7 @@ runs:
uses: actions/cache@v4
with:
path: ~/.cache/pypoetry/virtualenvs
key: v2-${{ runner.os }}-${{ runner.arch }}-python-deps-${{ hashFiles('poetry.lock') }}
key: v2-${{ runner.os }}-temp-python-deps-${{ hashFiles('poetry.lock') }}
- name: Install Python deps
shell: bash -euxo pipefail {0}