From 1d9f4fbe6c63f20da8b9a90c946425faebffe9ce Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Sat, 20 Feb 2021 18:51:46 -0800 Subject: [PATCH] [ci] Manually set rust stable version in CI pipeline --- .github/workflows/cont_integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index d1c5203..3de3efe 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: rust: - - stable + - 1.50.0 # STABLE - 1.45.0 # MSRV features: - default @@ -51,7 +51,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Set default toolchain - run: rustup default stable + run: rustup default 1.50.0 # STABLE - name: Set profile run: rustup set profile minimal - name: Add clippy -- 2.49.0