From fc7529b140b19e40070517eec3dd87506f5ac4d5 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Sun, 25 Jun 2023 23:11:40 +1000 Subject: [PATCH] fix job msrv in `ci.yml`: Use minimal version of deps log v0.4.19 bumps msrv and caused the ci to fail. This PR make sure log v0.4.18 is used instead. Signed-off-by: Jiahao XU --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 178b9e748..311e9bb84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -274,6 +274,13 @@ jobs: with: toolchain: ${{ steps.metadata.outputs.msrv }} + - name: Make sure log v0.4.18 is used + run: | + cargo update + cargo update -p log --precise 0.4.18 + + - uses: Swatinem/rust-cache@v2 + - name: Check run: cargo check