fix(ci): replace the retired macos-13 runner with macos-latest-large - #28
Merged
Merged
Conversation
…large GitHub fully retired the macos-13 runner image on 2025-12-08. A job targeting it never gets assigned a runner and queues forever rather than failing loudly, which is exactly what both verify-macos (macos-13) and sea (macos-13) did across two separate releases — each stuck queued for well over an hour with zero progress, confirmed against GitHub's own actions/runner-images README, which no longer lists macos-13 as an available image at all. macos-latest-large is GitHub's current arm64/x64 counterpart to macos-latest, tracking whichever OS version that means over time rather than pinning to a specific one that will itself eventually be retired the same way.
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
macos-latest-large failed a job in 4 seconds with zero recorded steps, the signature of a runner request GitHub's scheduler could never satisfy at all. actions/runner-images' own README lists both labels as aliases for the identical x64 macOS 26 image, but -large evidently routes through the (not enabled on this account) Larger Runners feature rather than acting as a plain alias in practice. macos-26-intel names the same image without going through that path.
|
🎉 This PR is included in version 1.2.5 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Both verify-macos (macos-13) and sea (macos-13) have been stuck queued for well over an hour with zero progress across the last two releases. GitHub fully retired the macos-13 runner image on 2025-12-08 (github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down) — a job targeting it never gets assigned a runner and just queues forever instead of failing loudly. Confirmed against GitHub's own actions/runner-images README, which no longer lists macos-13 at all. Replaced with macos-latest-large, GitHub's current arm64/x64 counterpart to macos-latest.