From 7ae8b4f4296b284f2364712209efdf9d10bf1f5f Mon Sep 17 00:00:00 2001 From: Michal Nazarewicz Date: Mon, 11 Mar 2024 13:37:55 +0100 Subject: [PATCH] Update Rust toolchain and CI versions (#479) --- .github/workflows/checks.yml | 2 +- .github/workflows/lint.yml | 2 +- rust-toolchain.toml | 8 ++++++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 2522afcd9..7315f15b0 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -20,7 +20,7 @@ jobs: cancel-in-progress: true container: - image: paritytech/ci-unified:bullseye-1.71.0-v20230727 + image: paritytech/ci-unified:bullseye-1.74.0-v20240109 runs-on: - self-hosted diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5ea372c9f..df6559590 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: group: check-${{ github.ref }} cancel-in-progress: true container: - image: paritytech/ci-unified:bullseye-1.71.0-v20230727 + image: paritytech/ci-unified:bullseye-1.74.0-v20240109 runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 654d4cf37..fda60ffb2 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,8 @@ [toolchain] -channel = "nightly-2023-08-24" +# Note: ahash 0.7.7 and 0.8.6 don’t work with newer nightly versions. +# For the time being sticking to version that works. Setting this to +# never version will likely require `cargo update -p ahash@0.8.3 && +# cargo update -p ahash@0.7.6`. +channel = "nightly-2024-02-05" targets = [ "wasm32-unknown-unknown"] -profile = "minimal" \ No newline at end of file +profile = "minimal"