From 6ab6f8454683c7696c6c99e7ef904409445be5ad Mon Sep 17 00:00:00 2001 From: Alex Dewar Date: Thu, 18 Dec 2025 13:49:35 +0000 Subject: [PATCH] Fix `update-rust-toolchain` workflow The new `checkout` action (v6) causes problems with the `update-rust-toolchain`, leading to multiple authentication headers being sent to git, which then fails. Fix by not persisting credentials. Fixes #1029. --- .github/workflows/update-rust-toolchain.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/update-rust-toolchain.yml b/.github/workflows/update-rust-toolchain.yml index 509c15ec8..81ff107d3 100644 --- a/.github/workflows/update-rust-toolchain.yml +++ b/.github/workflows/update-rust-toolchain.yml @@ -11,6 +11,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v6 + with: + persist-credentials: false - name: update rust toolchain uses: a-kenji/update-rust-toolchain@v1 with: