From d7b4567ee6aeb1d0f93cbecb464ecbecadd3d6bb Mon Sep 17 00:00:00 2001 From: Mykhailo Chalyi Date: Wed, 8 Apr 2026 09:24:33 +0000 Subject: [PATCH] fix(ci): update x86_64-apple-darwin runner from macos-13 to macos-latest macos-13 is deprecated by GitHub Actions, causing CLI binary builds to fail. Cross-compilation from ARM64 macos-latest works since the Rust toolchain step already adds the x86_64-apple-darwin target. Closes #1153 --- .github/workflows/cli-binaries.yml | 2 +- specs/008-release-process.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cli-binaries.yml b/.github/workflows/cli-binaries.yml index 617d9ef4..b0869cf5 100644 --- a/.github/workflows/cli-binaries.yml +++ b/.github/workflows/cli-binaries.yml @@ -26,7 +26,7 @@ jobs: runner: macos-latest archive: bashkit-aarch64-apple-darwin.tar.gz - target: x86_64-apple-darwin - runner: macos-13 + runner: macos-latest archive: bashkit-x86_64-apple-darwin.tar.gz - target: x86_64-unknown-linux-gnu runner: ubuntu-latest diff --git a/specs/008-release-process.md b/specs/008-release-process.md index 03e44a93..7eec3c78 100644 --- a/specs/008-release-process.md +++ b/specs/008-release-process.md @@ -185,7 +185,7 @@ The CI workflows handle this automatically on GitHub Release. | OS | Target | Runner | |----|--------|--------| | macOS | aarch64-apple-darwin | macos-latest | -| macOS | x86_64-apple-darwin | macos-13 | +| macOS | x86_64-apple-darwin | macos-latest | | Linux | x86_64-unknown-linux-gnu | ubuntu-latest | #### Homebrew