From 4503f9f0a79473ecccf4fc9eb41674dada7e5922 Mon Sep 17 00:00:00 2001 From: Wyatt Stanke Date: Wed, 28 Feb 2024 21:46:04 -0500 Subject: [PATCH] Try to fix disappearing dependencies --- .github/library/setup/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/library/setup/action.yml b/.github/library/setup/action.yml index dbf64a48..507e3615 100644 --- a/.github/library/setup/action.yml +++ b/.github/library/setup/action.yml @@ -31,7 +31,8 @@ runs: path: .venv key: venv-${{ runner.os }}-${{ inputs.python-version }}-${{ hashFiles('**/poetry.lock') }} - name: Install dependencies - if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + # Dependencies appear to be dissapearing + # if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root shell: bash - name: Activate venv