From e38f5759c4b93607e057abba49bd75998e579002 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Mon, 28 Jul 2025 14:01:00 +0200 Subject: [PATCH] ci: Use cargo update --locked instead of --frozen (#35192) This fixes false positives when e.g. bumping git deps Release Notes: - N/A --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66a2237c29..a9ef1531e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -271,7 +271,7 @@ jobs: - name: Check that Cargo.lock is up to date run: | - cargo update --frozen --workspace + cargo update --locked --workspace - name: cargo clippy run: ./script/clippy