From bde9450487423a5317d378ff0a1d062fc90ba9a9 Mon Sep 17 00:00:00 2001 From: tottoto Date: Thu, 25 Jul 2024 23:00:23 +0900 Subject: [PATCH] chore(ci): Use tokio 1.38.1 in MSRV check --- .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: