fix: Replace EOL macOS M1 resource class with M4 Pro#373
Merged
Conversation
The macos.m1.large.gen1 resource class reached end-of-life on Feb 16, 2026 and was removed by CircleCI. All CI builds using this class fail instantly. Replace with macos.m4pro.medium, CircleCI's recommended successor for Apple silicon macOS builds. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The new M4 Pro resource classes dropped the `macos.` prefix used by the old M1/M2 classes. The correct name is `m4pro.medium`, not `macos.m4pro.medium`. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
imSzukala
approved these changes
Feb 24, 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.
Why?
CircleCI removed all M1 and M2 macOS resource classes on February 16, 2026 (EOL). The
macos.m1.large.gen1class used in our CI config no longer exists, causing every macOS job (notablyinstall-dependencies) to fail instantly with 0 duration. This blocks all PRs — including Dependabot security updates like #372 and #363.How?
Replace
macos.m1.large.gen1withmacos.m4pro.medium, CircleCI's recommended successor for Apple silicon macOS builds. Xcode 16.0.0 is confirmed supported on the M4 Pro image, so no other config changes are needed. After merging, Dependabot PRs should be rebased (@dependabot rebase) to pick up this fix.Generated with Claude Code