Fix action file path (#59)

The path `poetry.lock` is wrong, fixed
This commit is contained in:
Nate Barbettini 2024-09-24 17:50:02 -07:00 committed by GitHub
parent 06decd44ec
commit dd572b8cce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,7 @@ runs:
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ inputs.python-version }}-${{ hashFiles('poetry.lock') }}
key: venv-${{ runner.os }}-${{ inputs.python-version }}-${{ hashFiles('arcade/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'