-
Notifications
You must be signed in to change notification settings - Fork 59
CI: Replace the macos-13 images with the macos-15-intel images #551
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Invalid runner label will block the workflow
macos-15-intel
isn’t recognised by GitHub-hosted runners (actionlint flags it as unknown), so this job will stay queued forever. Please swap in a supported label (e.g., the officialmacos-15
/size variant) or adjust the include strategy accordingly. Based on static analysis hints.🌐 Web query:
💡 Result:
Here are the current GitHub-hosted runner labels (official documentation + runner-images repo):
Linux:
Windows:
macOS:
Sources: official GitHub-hosted runners reference and the actions/runner-images repository. [1][2]
References
[1] GitHub Docs — GitHub-hosted runners reference.
[2] GitHub — actions/runner-images (labels → image table).
Invalid GitHub runner label
macos-15-intel
isn’t a supported GitHub-hosted runner and will leave the job queued; replace it with a valid label such asmacos-15
,macos-15-large
, ormacos-15-xlarge
.🧰 Tools
🪛 actionlint (1.7.7)
31-31: label "macos-15-intel" is unknown. available labels are "windows-latest", "windows-latest-8-cores", "windows-2025", "windows-2022", "windows-2019", "ubuntu-latest", "ubuntu-latest-4-cores", "ubuntu-latest-8-cores", "ubuntu-latest-16-cores", "ubuntu-24.04", "ubuntu-24.04-arm", "ubuntu-22.04", "ubuntu-22.04-arm", "ubuntu-20.04", "macos-latest", "macos-latest-xl", "macos-latest-xlarge", "macos-latest-large", "macos-15-xlarge", "macos-15-large", "macos-15", "macos-14-xl", "macos-14-xlarge", "macos-14-large", "macos-14", "macos-13-xl", "macos-13-xlarge", "macos-13-large", "macos-13", "self-hosted", "x64", "arm", "arm64", "linux", "macos", "windows". if it is a custom label for self-hosted runner, set list of labels in actionlint.yaml config file
(runner-label)
🤖 Prompt for AI Agents
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a false positive.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
💡 Result:
Yes — as of October 2, 2025 GitHub Actions provides a macOS 15 Intel runner under the label macos-15-intel (for x86_64/Intel workloads). GitHub introduced that label for users needing an Intel environment and announced Intel/macOS deprecation timing (macOS 15 Intel images available until the announced retirement window ending in 2027). [1][2][3]
Sources:
@njzjz You're absolutely right—my apologies for the incorrect flag.
macos-15-intel
is a valid GitHub-hosted runner label introduced in October 2025 for Intel/x86_64 workloads on macOS 15. The actionlint tool (v1.7.7) hasn't yet been updated to recognize this new label, which caused the false positive. Your PR change is correct. 👍✏️ Learnings added