fix(ci): use macos-15-large for Intel builds

macos-13 was retired in December 2025. Use macos-15-large for x86_64
macOS builds as recommended by GitHub.

See: https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Sam Valladares 2026-01-26 02:22:32 -06:00
parent 78810f2f5c
commit 3b5ab01966

View file

@ -18,9 +18,9 @@ jobs:
# macOS ARM64 (Apple Silicon)
- target: aarch64-apple-darwin
os: macos-latest
# macOS x86_64 (Intel)
# macOS x86_64 (Intel) - macos-13 retired Dec 2025, use macos-15-large
- target: x86_64-apple-darwin
os: macos-13
os: macos-15-large
# Linux x86_64
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest