From 6f5b582c31ac91d457b599e930c813596e328db3 Mon Sep 17 00:00:00 2001 From: Ryosuke Asano Date: Sun, 10 Nov 2024 09:56:28 +0900 Subject: [PATCH] [FB] Workflow | WIP --- .github/workflows/macOS-Universal.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macOS-Universal.yml b/.github/workflows/macOS-Universal.yml index 62e8d0bd7648..22ca92789ea3 100644 --- a/.github/workflows/macOS-Universal.yml +++ b/.github/workflows/macOS-Universal.yml @@ -187,12 +187,13 @@ jobs: - name: setup Rust 🦀 run: | - rustup toolchain install 1.79.0 + rustup toolchain install 1.81.0 + rustup default 1.81.0 if [[ $GHA_ARCH == 'x86_64' ]];then - rustup target add x86_64-apple-darwin + rustup target add x86_64-apple-darwin --toolchain 1.81.0 else - rustup target add aarch64-apple-darwin + rustup target add aarch64-apple-darwin --toolchain 1.81.0 fi #? https://github.com/mozilla/sccache#known-caveats