From 1dc97273c81616f24dc8a7ee9676b614829041a4 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Sat, 18 Oct 2025 08:46:55 +0200 Subject: [PATCH] github-actions: install cbindgen with locked deps To avoid MSRV bumps in the dependencies. --- .github/workflows/builds.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index d1a9aa03e..80d01ba1b 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -73,7 +73,7 @@ jobs: software-properties-common \ zlib1g \ zlib1g-dev - - run: cargo install --force --debug cbindgen + - run: cargo install --locked --force --debug cbindgen - run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH - uses: actions/checkout@v3 - run: python3 ./run.py --self-test @@ -141,7 +141,7 @@ jobs: sudo \ which \ zlib-devel - - run: cargo install --force --debug cbindgen + - run: cargo install --locked --force --debug cbindgen - run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH - uses: actions/checkout@v3 - run: python3 ./run.py --self-test -- 2.47.3