From b799c6d28afceb72eca2428e5130941bccd60242 Mon Sep 17 00:00:00 2001 From: jkaczman Date: Tue, 11 Aug 2026 07:13:06 -0400 Subject: [PATCH] chore: bump macos runner to macos-26; impending deprecation in macos-14 --- .github/workflows/release-binaries.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index b344f6cd6..014234753 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -27,7 +27,7 @@ jobs: runner: blacksmith-4vcpu-ubuntu-2404-arm deb: true - target: aarch64-apple-darwin # Apple Silicon - runner: macos-14 + runner: macos-26 steps: - uses: actions/checkout@v6 @@ -40,15 +40,6 @@ jobs: sudo apt-get install -y \ build-essential cmake clang pkg-config libssl-dev mold - # openssl-sys needs Homebrew OpenSSL; bindgen/clang-sys need libclang from - # the (keg-only) llvm formula, found via LIBCLANG_PATH. - - name: Install build dependencies (macOS) - if: runner.os == 'macOS' - run: | - brew install llvm pkg-config openssl@3 - echo "OPENSSL_DIR=$(brew --prefix openssl@3)" >> "$GITHUB_ENV" - echo "LIBCLANG_PATH=$(brew --prefix llvm)/lib" >> "$GITHUB_ENV" - - name: Install Rust uses: dtolnay/rust-toolchain@stable with: