From 5add80ef526e537bd33cc14bcc03b6f977bcb8ce Mon Sep 17 00:00:00 2001 From: Michael Diamond Date: Sun, 2 Feb 2025 14:18:42 -0800 Subject: [PATCH] Update old MacOS dependency --- .github/workflows/rust.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8e427f1..e1ba4b3 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -43,7 +43,8 @@ jobs: - { target: arm-unknown-linux-gnueabihf , os: ubuntu-20.04 , use-cross: true } - { target: i686-unknown-linux-gnu , os: ubuntu-20.04 , use-cross: true } - { target: i686-unknown-linux-musl , os: ubuntu-20.04 , use-cross: true } - - { target: x86_64-apple-darwin , os: macos-12 } + # Note x86 does not appear to be supported past macos-13: https://github.com/actions/runner-images/issues/9741 + - { target: x86_64-apple-darwin , os: macos-13 } - { target: aarch64-apple-darwin , os: macos-14 } - { target: x86_64-pc-windows-msvc , os: windows-2019 , suffix: .exe } - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04 }