From 08b5907c9c3a153fdac5ef896e29402974226e5b Mon Sep 17 00:00:00 2001 From: Julio Quinteros Pro Date: Thu, 19 Feb 2026 20:07:14 -0300 Subject: [PATCH] fix(ci): remove --no-update flag removed in Poetry 2.x MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The workflow fails with: The option "--no-update" does not exist --no-update was removed in Poetry 2.x. Plain `poetry lock` is the correct equivalent — it re-solves only what pyproject.toml requires without upgrading already-locked packages. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/regenerate-poetry-lock.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/regenerate-poetry-lock.yml b/.github/workflows/regenerate-poetry-lock.yml index 8da2d70394..c1d62a4060 100644 --- a/.github/workflows/regenerate-poetry-lock.yml +++ b/.github/workflows/regenerate-poetry-lock.yml @@ -32,7 +32,7 @@ jobs: - name: Regenerate poetry.lock # --no-update: re-solve only what pyproject.toml requires without # upgrading packages that are already in the lock file. - run: poetry lock --no-update + run: poetry lock - name: Check whether poetry.lock actually changed id: diff @@ -64,7 +64,7 @@ jobs: Run `poetry lock` to fix the lock file. ``` - Regenerated with `poetry lock --no-update` (existing package versions are preserved; only the lock file metadata is updated to match the new constraints). + Regenerated with `poetry lock` (existing package versions are preserved; only the lock file metadata is updated to match the new constraints). BODY gh pr create \