From 4e06bb6ff4da44311b4e1458df992fef8c1be45a Mon Sep 17 00:00:00 2001 From: konsti Date: Fri, 12 Jun 2026 11:26:34 +0200 Subject: [PATCH] Update cargo publish nightly to 2026-06-12 (#19789) Fixes the crates.io publishing error from [https://github.com/rust-lang/cargo/issues/17093](https://github.com/rust-lang/cargo/issues/17093) --- .github/workflows/publish-crates.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-crates.yml b/.github/workflows/publish-crates.yml index 165e6238b8..5fdca94020 100644 --- a/.github/workflows/publish-crates.yml +++ b/.github/workflows/publish-crates.yml @@ -30,9 +30,9 @@ jobs: # Nightly is required for the unstable `-Zpublish-timeout` flag, which lets us # raise the per-crate wait above the 60s default. crates.io indexing has been # known to lag long enough to exceed that during workspace publishes. - run: rustup toolchain install nightly-2026-04-15 --profile minimal --no-self-update + run: rustup toolchain install nightly-2026-06-12 --profile minimal --no-self-update - name: Publish workspace crates # Note `--no-verify` is safe because we do a publish dry-run elsewhere in CI - run: python3 scripts/publish-crates.py --cargo cargo +nightly-2026-04-15 --no-verify -- -Zpublish-timeout --config 'publish.timeout=600' + run: python3 scripts/publish-crates.py --cargo cargo +nightly-2026-06-12 --no-verify -- -Zpublish-timeout --config 'publish.timeout=600' env: CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}