Unnamed repository; edit this file 'description' to name the repository.
pin nightly for miri workflow
bit-aloo 2 months ago
parent 4bb462f · commit 7a8342c
-rw-r--r--.github/workflows/ci.yaml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index c3a5017d72..ca7d3058d8 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -206,8 +206,11 @@ jobs:
- name: Install Rust toolchain
run: |
- rustup update --no-self-update nightly
- rustup default nightly
+ # FIXME: Pin nightly due to a regression in miri on nightly-2026-02-12.
+ # See https://github.com/rust-lang/miri/issues/4855.
+ # Revert to plain `nightly` once this is fixed upstream.
+ rustup toolchain install nightly-2026-02-10
+ rustup default nightly-2026-02-10
rustup component add miri
# - name: Cache Dependencies