From 921be34309351bbba853c4bbd0a20adc81ac30d2 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Thu, 16 Jan 2025 14:21:32 +0100 Subject: [PATCH 1/2] ci: pin nightly --- .github/actions/rust/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/rust/action.yml b/.github/actions/rust/action.yml index 54fe0e45a1..dae4599e6f 100644 --- a/.github/actions/rust/action.yml +++ b/.github/actions/rust/action.yml @@ -24,7 +24,9 @@ runs: - name: Install Rust uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17 # master with: - toolchain: ${{ inputs.version }} + # Nightly pinned due to + # for now. + toolchain: ${{ inputs.version == 'nightly' && 'nightly-2025-01-15' || inputs.version }} components: ${{ inputs.components }} targets: ${{ inputs.targets }} From 7b55c01f7551bc239ceba1221fa8cd02d279876f Mon Sep 17 00:00:00 2001 From: Max Inden Date: Thu, 16 Jan 2025 15:37:22 +0100 Subject: [PATCH 2/2] Trigger CI