remove --no-deps from lock check (#2134)

This commit is contained in:
Luna Yao
2026-04-19 18:46:26 +02:00
committed by GitHub
parent f63054e937
commit d7a5fb8d66
+1 -1
View File
@@ -60,7 +60,7 @@ jobs:
- name: Check Cargo.lock is up to date
run: |
if ! cargo metadata --format-version 1 --locked --no-deps > /dev/null; then
if ! cargo metadata --format-version 1 --locked > /dev/null; then
echo "::error::Cargo.lock is out of date. Run cargo generate-lockfile or cargo build locally, then commit Cargo.lock."
exit 1
fi