From dd572b8cce20798fd9aa342b395589b99449fb0c Mon Sep 17 00:00:00 2001 From: Nate Barbettini Date: Tue, 24 Sep 2024 17:50:02 -0700 Subject: [PATCH] Fix action file path (#59) The path `poetry.lock` is wrong, fixed --- .github/actions/setup-poetry-env/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-poetry-env/action.yml b/.github/actions/setup-poetry-env/action.yml index 0ea14f29..a6b07139 100644 --- a/.github/actions/setup-poetry-env/action.yml +++ b/.github/actions/setup-poetry-env/action.yml @@ -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'