From 84c2a2bb5442daa3062fe33fbec488e5bddb47f9 Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Sun, 2 Oct 2022 19:59:54 +0100 Subject: [PATCH] Second attempt to fix rust 1.45 CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3305f74..382c922 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,8 +37,8 @@ jobs: toolchain: ${{ matrix.rust }} override: true - if: matrix.rust == '1.45.0' - # work-around https://github.com/serde-rs/serde/issues/2255 - run: cargo update -p serde --precise 1.0.142 && cargo update -p once_cell --precise 1.10.0 + # work-around https://github.com/serde-rs/serde/issues/2255 and similar crate/rustc compatibility issues + run: cargo update -p serde --precise 1.0.142 && cargo update -p once_cell --precise 1.10.0 && cargo update -p pretty_assertions --precise 1.2.1 - name: Check with no feature flags run: cargo check --verbose --no-default-features continue-on-error: ${{ matrix.allow_failure }}