From 80d53b129f597941138b2c51efbc2b072e414a28 Mon Sep 17 00:00:00 2001 From: David Adam Date: Wed, 18 Dec 2024 23:37:23 +0800 Subject: [PATCH] macOS codesigning: use stable Rust The apple-codesign crate has a fairly aggressive MSRV policy, and the compiler itself still targets 10.12 which is well below the minimum version of macOS for aarch64. Just use stable. --- .github/workflows/mac_codesign.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mac_codesign.yml b/.github/workflows/mac_codesign.yml index e1b5c7c03..10ebbaa58 100644 --- a/.github/workflows/mac_codesign.yml +++ b/.github/workflows/mac_codesign.yml @@ -13,8 +13,8 @@ jobs: uses: dtolnay/rust-toolchain@1.73.0 with: targets: x86_64-apple-darwin - - name: Install Rust 1.79 - uses: dtolnay/rust-toolchain@1.79 + - name: Install Rust Stable + uses: dtolnay/rust-toolchain@stable with: targets: aarch64-apple-darwin - name: build-and-codesign