From d6b79efb7cc1deef38a4ceb88ac4540391c0b2c3 Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Sun, 26 May 2024 14:08:41 +0200 Subject: [PATCH] Sunset `apple-silicon-m1` self-hosted runner, as now is supported by Github Hosted runners via `macos-latest` tag. Use `macos-13` for runs on Intel macs (#1811) --- .github/workflows/ios.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 01e6702bf..7eb153314 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -6,7 +6,9 @@ jobs: runs-on: ${{ matrix.runs_on }} strategy: matrix: - runs_on: [macos-latest, apple-silicon-m1] + # macos-latest (ATM macos-14) runs on Apple Silicon, + # macos-13 runs on Intel + runs_on: [macos-latest, macos-13] steps: - name: Setup python uses: actions/setup-python@v4