From c29ccc4f4d384b7119efdef3dd12620cf3dc6b7e Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Thu, 10 Apr 2025 20:35:00 +0200 Subject: [PATCH] Avoid updating deps on older versions --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 899d3be..be359e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,8 @@ jobs: # Make sure we test with recent deps - run: cargo update + # Note: some crates broke BC with 1.74 so we use the locked deps + if: "${{ matrix.rust != '1.74' }}" - run: cargo build --all-features --all-targets - run: cargo test --all-features - run: cargo fmt --all -- --check