ci: Use cargo update --locked instead of --frozen (#35192)

Piotr Osiewicz created

This fixes false positives when e.g. bumping git deps

Release Notes:

- N/A

Change summary

.github/workflows/ci.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

.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