From ab9d5a1c04162bc4435a97ad9fd9718fcc7b43fe Mon Sep 17 00:00:00 2001 From: twsl <45483159+twsl@users.noreply.github.com> Date: Tue, 3 Dec 2024 00:48:40 +0100 Subject: [PATCH] Update {% if use_precommit %}pre-commit.yaml{% endif %}.jinja --- .../{% if use_precommit %}pre-commit.yaml{% endif %}.jinja | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project/.github/workflows/{% if use_precommit %}pre-commit.yaml{% endif %}.jinja b/project/.github/workflows/{% if use_precommit %}pre-commit.yaml{% endif %}.jinja index f1f406b..7002e04 100644 --- a/project/.github/workflows/{% if use_precommit %}pre-commit.yaml{% endif %}.jinja +++ b/project/.github/workflows/{% if use_precommit %}pre-commit.yaml{% endif %}.jinja @@ -43,7 +43,8 @@ jobs: id: cached-poetry-dependencies {% raw %}with: path: .venv - key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}{% endraw %} + key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} + restore-keys: venv-${{ runner.os }}-${{ matrix.python-version }}-{% endraw %} - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'