From 00a54f63cbf7712fec4ebd7862f4df1adf989608 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 17 Oct 2023 01:27:06 -0700 Subject: [PATCH] Correct lockfile name in Poetry configuration file sync check A copy/paste error caused the command to check for an out of sync condition on the npm lockfile instead of the Poetry lockfile. --- .github/workflows/check-poetry-task.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-poetry-task.yml b/.github/workflows/check-poetry-task.yml index 1c99405..c14beb4 100644 --- a/.github/workflows/check-poetry-task.yml +++ b/.github/workflows/check-poetry-task.yml @@ -123,4 +123,4 @@ jobs: diff \ --color \ --exit-code \ - package-lock.json + poetry.lock