From d24c40d96e7d51865158c2373867e1c0201dfff9 Mon Sep 17 00:00:00 2001 From: Yuchen Wu Date: Fri, 14 Jun 2024 13:47:25 -0700 Subject: [PATCH] Pin the stable Rust version To avoid CI failure due to new clippy rules introduced by newer Rust releases. We will manually update the Rust version here after each Rust release. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0cad143..de737fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: # TODO: add nightly - toolchain: [stable, 1.72] + toolchain: [1.78, 1.72] runs-on: ubuntu-latest # Only run on "pull_request" event for external PRs. This is to avoid # duplicate builds for PRs created from internal branches.