From 8f919133379213698ba43fda5a39a153a17324b7 Mon Sep 17 00:00:00 2001 From: Robin Salen Date: Tue, 6 Feb 2024 09:32:45 -0500 Subject: [PATCH 1/2] Fix nightly version --- .github/workflows/continuous-integration-workflow.yml | 6 +++--- rust-toolchain | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 7c18a405a9..5cd623127e 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -28,7 +28,7 @@ jobs: uses: actions/checkout@v4 - name: Install nightly toolchain - uses: dtolnay/rust-toolchain@nightly + uses: dtolnay/rust-toolchain@nightly-2024-02-01 - name: Set up rust cache uses: Swatinem/rust-cache@v2 @@ -77,7 +77,7 @@ jobs: uses: actions/checkout@v4 - name: Install nightly toolchain - uses: dtolnay/rust-toolchain@nightly + uses: dtolnay/rust-toolchain@nightly-2024-02-01 with: targets: wasm32-unknown-unknown @@ -112,7 +112,7 @@ jobs: uses: actions/checkout@v4 - name: Install nightly toolchain - uses: dtolnay/rust-toolchain@nightly + uses: dtolnay/rust-toolchain@nightly-2024-02-01 with: components: rustfmt, clippy diff --git a/rust-toolchain b/rust-toolchain index 07ade694b1..471d867dd0 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1 +1 @@ -nightly \ No newline at end of file +nightly-2024-02-01 \ No newline at end of file From 246c2b6263f71313192801b1c27a3c08e241f545 Mon Sep 17 00:00:00 2001 From: Robin Salen Date: Tue, 6 Feb 2024 09:39:29 -0500 Subject: [PATCH 2/2] Fix workflow --- .github/workflows/continuous-integration-workflow.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 5cd623127e..29f471380a 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -28,7 +28,9 @@ jobs: uses: actions/checkout@v4 - name: Install nightly toolchain - uses: dtolnay/rust-toolchain@nightly-2024-02-01 + uses: dtolnay/rust-toolchain@master + with: + toolchain: nightly-2024-02-01 - name: Set up rust cache uses: Swatinem/rust-cache@v2 @@ -77,8 +79,9 @@ jobs: uses: actions/checkout@v4 - name: Install nightly toolchain - uses: dtolnay/rust-toolchain@nightly-2024-02-01 + uses: dtolnay/rust-toolchain@master with: + toolchain: nightly-2024-02-01 targets: wasm32-unknown-unknown - name: Set up rust cache @@ -112,8 +115,9 @@ jobs: uses: actions/checkout@v4 - name: Install nightly toolchain - uses: dtolnay/rust-toolchain@nightly-2024-02-01 + uses: dtolnay/rust-toolchain@master with: + toolchain: nightly-2024-02-01 components: rustfmt, clippy - name: Set up rust cache