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.
This commit is contained in:
David Adam 2024-12-18 23:37:23 +08:00
parent 7162822486
commit 80d53b129f

View file

@ -13,8 +13,8 @@ jobs:
uses: dtolnay/rust-toolchain@1.73.0 uses: dtolnay/rust-toolchain@1.73.0
with: with:
targets: x86_64-apple-darwin targets: x86_64-apple-darwin
- name: Install Rust 1.79 - name: Install Rust Stable
uses: dtolnay/rust-toolchain@1.79 uses: dtolnay/rust-toolchain@stable
with: with:
targets: aarch64-apple-darwin targets: aarch64-apple-darwin
- name: build-and-codesign - name: build-and-codesign