From 2be036f9bafe3ced866ce31681420a70c4e91510 Mon Sep 17 00:00:00 2001 From: jmjoy Date: Tue, 9 Jan 2024 18:26:14 +0800 Subject: [PATCH] Fix CI --- .github/workflows/ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 832700c..6a3eb4a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -101,8 +101,10 @@ jobs: - name: Install protoc run: sudo apt-get install -y protobuf-compiler if: ${{ matrix.features != '--features vendored' }} - - name: Install Rust toolchain - run: rustup toolchain install 1.63.0 --component clippy + - name: Install Cargo nightly + run: rustup toolchain install nightly-2023-05-19 + - name: Cargo minimal versions + run: cargo +nightly-2023-05-19 -Z minimal-versions generate-lockfile - name: Run check run: cargo check --workspace --release ${{ matrix.features }} - name: Run clippy