From 9a016acb35b0673034b592932e20e1917b079747 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Fri, 13 Oct 2023 15:51:14 -0400 Subject: [PATCH] ci: use --locked for MSRV cargo-ndk install A transitive dependency of `cargo-ndk`, `regex-automata`,increased its MSRV and so installing `cargo-ndk` at version 2.12.7 breaks in the MSRV CI task unless we use the pinned `Cargo.lock` version, or upgrade our MSRV in turn. --- .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 ec17adc..382b9a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,7 +78,7 @@ jobs: - name: Install cargo-ndk. run: | - cargo install cargo-ndk --version 2.12.7 + cargo install cargo-ndk --locked --version 2.12.7 rustup target add aarch64-linux-android - name: Clippy (${{ matrix.os }})