ci: Pin macOS runners to macos-15#3731
Merged
Merged
Conversation
GitHub is migrating macos-latest to macOS 15. Pin explicitly to avoid unexpected runner image changes. Co-Authored-By: Cursor <noreply@cursor.com> Co-authored-by: Cursor <cursoragent@cursor.com>
Contributor
Semver Impact of This PR⚪ None (no version bump detected) 📋 Changelog PreviewThis is how your changes will appear in the changelog. Internal Changes
🤖 This preview updates automatically when you update the PR. |
Contributor
There was a problem hiding this comment.
Pull request overview
Pins the macOS GitHub Actions runners from the rolling macos-latest label to the explicit macos-15 image in two workflows, to avoid CI instability when GitHub migrates the macos-latest alias.
Changes:
- Pin
cocoajob inupdate-deps.ymltomacos-15. - Pin
iosjob insize-analysis.ymltomacos-15.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/update-deps.yml | Switches the cocoa job runner from macos-latest to macos-15. |
| .github/workflows/size-analysis.yml | Switches the ios job runner from macos-latest to macos-15. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
NinjaLikesCheez
approved these changes
Jun 1, 2026
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.
Description
Replaces
runs-on: macos-latestwithruns-on: macos-15in GitHub Actions workflows..github/workflows/update-deps.yml(cocoajob).github/workflows/size-analysis.yml(iosjob)Motivation
GitHub is migrating the
macos-latestlabel to macOS 15. Pinning explicitly tomacos-15avoids unexpected runner image changes and keeps CI stable.How was this tested?
CI on this PR.
Made with Cursor