From e18232d9249cb5b9bf3a732a0dbe3dd1e5c7ff0f Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Mon, 3 Aug 2026 12:53:30 -0500 Subject: [PATCH] ci: Pin docs toolchain to nightly-2026-08-02 The job has been failing due to [1]. [1]: https://github.com/rust-lang/rust/issues/160439 --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e84160cb802e..49015899cfdd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -394,7 +394,8 @@ jobs: with: persist-credentials: false - name: Install Rust - run: rustup update nightly --no-self-update && rustup default nightly + # FIXME(rust-lang/rust#160439): unpin once the issue is fixed + run: rustup update nightly-2026-08-02 --no-self-update && rustup default nightly-2026-08-02 - uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 - run: cargo doc --workspace --no-deps