github / roadmap

GitHub public roadmap
Creative Commons Attribution 4.0 International
7.77k stars 934 forks source link

Actions: macOS 15 is now available for GitHub-hosted runners (Public Beta) #987

Open github-product-roadmap opened 1 week ago

github-product-roadmap commented 1 week ago

Summary

macOS 15 is now available in public beta for GitHub-hosted runners.

Intended Outcome

Apple developers require the latest version of macOS and Xcode now have access to newer versions

How will it work?

Update the runs-on: key in you workflow file to macos-15, macos-15-large, or macos-15-xlarge

jobs:
  build:
    runs-on: macos-15
    steps:
      - uses: actions/checkout@v4
      - name: Build
        run: swift build
      - name: Run tests
        run: swift test