From 58a31462ecb8a6a72480732c840a55a19c2020f9 Mon Sep 17 00:00:00 2001 From: kryanbeane Date: Wed, 6 May 2026 13:38:01 +0300 Subject: [PATCH] fix(ci): remove deprecated --no-update flag from poetry lock Poetry 2.x removed the --no-update option. The default behavior of `poetry lock` in v2 already preserves existing locked versions unless constraints have changed, matching the old --no-update semantics. Signed-off-by: kryanbeane Co-authored-by: Cursor --- .github/workflows/update-versions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-versions.yaml b/.github/workflows/update-versions.yaml index 39f0fa53..623548f2 100644 --- a/.github/workflows/update-versions.yaml +++ b/.github/workflows/update-versions.yaml @@ -110,7 +110,7 @@ jobs: - name: Regenerate poetry.lock if: inputs.new_ray_version != '' || inputs.new_sdk_version != '' run: | - poetry lock --no-update + poetry lock echo "Regenerated poetry.lock" - name: Update runtime image SHAs