Workflow Labels

Use workflow labels to select which GetMac runner image your CI/CD jobs run on. Each label maps to a specific macOS version and Xcode toolchain.

Available Labels

LabelmacOSXcodeStatus
getmac-latestTahoe (26.3)26.3 RC2Active
getmacTahoe (26.3)26.3 RC2Active
getmac-tahoeTahoe (26.3)26.3 RC2Active
getmac-tahoe-betaTahoe Beta (26.4)26.4 BetaActive
getmac-sequoiaSequoia (15.6.1)16.4Active
getmac-sonomaSonoma (14.6.1)16.3Active

getmac-latest and getmac are aliases that always point to the most recent stable image. Currently they resolve to the same image as getmac-tahoe.

Usage

To use GetMac runners in your GitHub Actions workflows, update the runs-on field in your workflow file:

- runs-on: macos-latest
+ runs-on: getmac

To pin a specific macOS version:

- runs-on: macos-latest
+ runs-on: getmac-sequoia
Workflow Labels | GetMac