From 436a33f37735aa7bfa8fc6c1aa2584b1c4c2d898 Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Wed, 15 Nov 2023 16:58:51 -0800 Subject: [PATCH] Pin a specific nightly --- .github/workflows/test.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3f0eddb5..de6b74da 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -109,8 +109,10 @@ jobs: - uses: actions/checkout@v4 with: persist-credentials: false - - name: Install nightly rust toolchain + - name: Install stable rust toolchain uses: dtolnay/rust-toolchain@nightly + with: + toolchain: nightly-2023-11-01 - name: Install cbindgen # Pin the installed version of cbindgen so that local usage can be # reliably matched to CI. There can be non-semantic differences in @@ -133,6 +135,8 @@ jobs: - name: Install rust toolchain uses: dtolnay/rust-toolchain@nightly + with: + toolchain: nightly-2023-11-01 - name: cargo doc (all features) run: cargo doc --all-features --no-deps --workspace @@ -150,6 +154,8 @@ jobs: - name: Install rust toolchain uses: dtolnay/rust-toolchain@nightly + with: + toolchain: nightly-2023-11-01 - name: Build client/server binaries run: make target/client target/server