From ca95990f577350d3f377c11625e9a71613e58881 Mon Sep 17 00:00:00 2001 From: hashbk Date: Thu, 27 Aug 2026 11:12:36 +0800 Subject: [PATCH] **chore(ci): update Rust toolchain version to stable** In the `build.yaml` GitHub Actions workflow, change the Rust toolchain version from the fixed `"1.90"` to the `"stable"` channel. This allows the CI environment to build using the latest stable compiler release, avoiding build failures caused by the specified version being unavailable or outdated. --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 95181de53..a7fd1acc4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -49,7 +49,7 @@ jobs: - name: Install toolchain uses: actions-rs/toolchain@v1 with: - toolchain: "1.90" + toolchain: "stable" override: true default: true components: rustfmt @@ -88,7 +88,7 @@ jobs: - name: Install toolchain uses: actions-rs/toolchain@v1 with: - toolchain: "1.90" + toolchain: "stable" override: true default: true components: rustfmt