From bf09d19c76bbb4376cea22da8c438ef8ca0a9aef Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 31 Jul 2025 15:11:42 +0000 Subject: [PATCH] Update Rust toolchain to 1.86 with backward compatibility Signed-off-by: Simon Davies Signed-off-by: Mark Rossetti --- action.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 5e55d2d..a5b7caa 100644 --- a/action.yml +++ b/action.yml @@ -5,9 +5,9 @@ description: "Common setup steps for GitHub workflows in the Hyperlight project" inputs: rust-toolchain: - description: "(Default: 1.85.0) Rust toolchain specification to install - see https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification" + description: "(Default: 1.86.0) Rust toolchain specification to install - see https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification" required: false - default: "1.85.0" + default: "1.86.0" runs: using: composite @@ -148,6 +148,7 @@ runs: if: ${{ (runner.os == 'Linux') }} run: | rustup toolchain install 1.81.0 + rustup toolchain install 1.85.0 shell: bash - name: Set up env vars (Linux) @@ -189,6 +190,7 @@ runs: if: ${{ (runner.os == 'Windows') }} run: | rustup toolchain install 1.81.0 + rustup toolchain install 1.85.0 shell: pwsh - name: Set up env vars (Windows)