From 9a356f66893788fc2f9d92ce5bc89fb81ea78897 Mon Sep 17 00:00:00 2001 From: Matt Fogel Date: Wed, 13 May 2026 16:18:32 -0400 Subject: [PATCH] ci: try macos-latest now that cache fix is in place MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The original PR #54 pin to macos-14 was based on (incorrect) research claiming macos-14 was a clean escape hatch for the broken Homebrew rustup wrapper on macos-15. The actual root cause turned out to be a poisoned Swatinem cache, fixed in PR #55 with `cache-bin: false` and a prefix-key bump. With the real fix in place, macos-latest should work too. Trying it to keep the workflow aligned with GHA defaults. If this flakes, revert to macos-14 — that's the known-good fallback. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0b7da7..d349149 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-14] + os: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable @ 2026-05-13