From 52a0f87e3c1066fc0a75eea12c9cf68c6444a3d0 Mon Sep 17 00:00:00 2001 From: GBA bot Date: Thu, 24 Feb 2022 21:56:29 +0000 Subject: [PATCH] Use cargo update rather than cargo generate-lockfile --- .github/scripts/update-lockfiles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/update-lockfiles.sh b/.github/scripts/update-lockfiles.sh index 11ae32dc..b40e147c 100755 --- a/.github/scripts/update-lockfiles.sh +++ b/.github/scripts/update-lockfiles.sh @@ -2,7 +2,7 @@ function update_lockfiles() { for toml in **/Cargo.toml; do - (cd "$(dirname "$toml")" && cargo generate-lockfile) + (cd "$(dirname "$toml")" && cargo update) done }