From 447517f0b0dfa875a3939e7839f077ea08a5ca6a Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Thu, 3 Nov 2022 15:54:39 +0100 Subject: [PATCH] ci: Run clippy from a fixed version instead of stable --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1d5b9496c..7fe2cd930 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -88,8 +88,8 @@ jobs: - name: Install toolchain run: | - rustup toolchain install stable - rustup default stable + rustup toolchain install 1.64.0 + rustup default 1.64.0 rustup component add clippy - name: Install Protoc