GitHub Actions: Apple silicon (M1) macOS runners are now available in public beta! #69211
Replies: 8 comments 12 replies
-
Is there a way to run docker commands on the Apple silicon macOS runner? I tried
This limitation seems to be the cause of the error. I need to launch a Linux VM to use docker on macOS, but the Apple silicon macOS runner does not support nested virtualization, so I can't launch a VM and can't use docker command. Is my understanding correct? |
Beta Was this translation helpful? Give feedback.
-
what's the keyword to use for the |
Beta Was this translation helpful? Give feedback.
-
Hello, I am inquiring about the API endpoint Thank you for your assistance! |
Beta Was this translation helpful? Give feedback.
-
Are there options to use the Mac M1 runners on smaller instances which do not cost anything? I manage an open source project and we use GitHub runners to do all our builds except Mac ARM which I run locally. I would love to move our Mac ARM builds to GitHub as well but was hoping to find a way to do this can we didn't have to pay for. Thanks! |
Beta Was this translation helpful? Give feedback.
-
You can also try the FlyCI's M1 and M2 runners. Step 1: Install the FlyCI GitHub app. Easily get access to M2 runners: jobs:
ci:
- runs-on: macos-latest
+ runs-on: flyci-macos-large-latest-m2
steps:
- name: 👀 Checkout repo
uses: actions/checkout@v4 They're up to 2x faster and up to 2x cheaper than GitHub's. |
Beta Was this translation helpful? Give feedback.
-
Actions new ship 🚢 - macOS 14 (Sonoma) and the new M1 macOS runner #102846
|
Beta Was this translation helpful? Give feedback.
-
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
How can developers or teams configure workflows to use Apple Silicon (M1) hosted runners on GitHub Actions.? |
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Product Feedback
Body
Apple silicon (M1) hosted runners can now be used by any developer, team, or enterprise! You can try the new runners today by setting the runs-on: key to macos-latest-xlarge or macos-13-xlarge. The 12-core Intel macOS runner is still available as well and can be used by updating the runs-on: key to macos-latest-large, macos-12-large, or macos-13-large in your workflow file.
More information about using the M1 hosted runner can be found here.
To learn more about hosted runner per job minute pricing, check out the docs.
Beta Was this translation helpful? Give feedback.
All reactions