From 8729f60f7904f097cbc1c321b67b9ff02fcf3406 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Thu, 23 Mar 2023 12:15:25 +0000 Subject: [PATCH] fix CI MSRV --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e77153677..4bd303482 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,6 +58,11 @@ jobs: - name: Cache Dependencies uses: Swatinem/rust-cache@v2.1.0 + - name: workaround MSRV issues + if: matrix.version != 'stable' + run: | + cargo update -p=time --precise=0.3.13 + - name: check minimal run: cargo ci-min @@ -120,6 +125,11 @@ jobs: - name: Cache Dependencies uses: Swatinem/rust-cache@v2.1.0 + - name: workaround MSRV issues + if: matrix.version != 'stable' + run: | + cargo update -p=time --precise=0.3.13 + - name: check minimal run: cargo ci-min