From 7afb1ed5337c0689d7341e09d31578f1fcffc8af Mon Sep 17 00:00:00 2001 From: tottoto Date: Fri, 26 Jul 2024 21:16:06 +0900 Subject: [PATCH] chore(ci): Use tokio 1.38.1 in MSRV check (#139) --- .github/workflows/CI.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 30d9018..76c556d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -68,6 +68,10 @@ jobs: uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.rust }} + - name: Make sure tokio 1.38.1 is used for MSRV + run: | + cargo update + cargo update --package tokio --precise 1.38.1 - run: cargo check --features full miri: