From 895815c84d79a5a436841225d131ec9438786655 Mon Sep 17 00:00:00 2001 From: Ryan Brooks Date: Thu, 7 Aug 2025 15:22:43 -0700 Subject: [PATCH] Pin rust toolchain to latest stable to prevent random CI failures --- .github/workflows/lint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ab3951fd23..ce1a32e79b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -46,7 +46,8 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 - name: Install Rust Toolchain - run: rustup toolchain install stable --profile minimal --component clippy --component rustfmt --no-self-update + # Pin to specific version to avoid clippy lint changes in new releases + run: rustup toolchain install 1.89.0 --profile minimal --component clippy --component rustfmt --no-self-update - name: Add Target run: rustup target add ${{ matrix.target }}