From 49d01cc0f10a429cf79736ca036993c8fd632e76 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 2 Mar 2026 04:41:41 +0000 Subject: [PATCH] CI: Use pinned dependencies where possible for `build-nostd` --- .github/workflows/ci.yml | 2 ++ .github/workflows/lints-stable.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 354bda346..14c13b13b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,6 +73,8 @@ jobs: - name: Show Cargo.toml for the synthetic crate working-directory: ./ci-build run: cat Cargo.toml + - name: Copy pinned dependencies into synthetic crate + run: cp crate_root/Cargo.lock ci-build/ - name: Add target working-directory: ./ci-build run: rustup target add ${{ matrix.target }} diff --git a/.github/workflows/lints-stable.yml b/.github/workflows/lints-stable.yml index a5c24af8e..3ea0ac8a2 100644 --- a/.github/workflows/lints-stable.yml +++ b/.github/workflows/lints-stable.yml @@ -53,6 +53,8 @@ jobs: - name: Show Cargo.toml for the synthetic crate working-directory: ./ci-build run: cat Cargo.toml + - name: Copy pinned dependencies into synthetic crate + run: cp crate_root/Cargo.lock ci-build/ - name: Add target working-directory: ./ci-build run: rustup target add ${{ matrix.target }}