Skip to content

Commit c6a4f63

Browse files
authored
CI: Use latest macOS images (#2517)
macos-12 is no longer available, this changes it to macos-13 (latest available x64 macos) macos-14 is changed to macos-latest (arm64)
1 parent 0583f0f commit c6a4f63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ${{ matrix.os }}
3131
strategy:
3232
matrix:
33-
os: [ubuntu-latest, macos-12, macos-14, windows-latest]
33+
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
3434
steps:
3535
- uses: actions/setup-python@v5
3636
with:
@@ -43,7 +43,7 @@ jobs:
4343
if: matrix.os == 'ubuntu-latest'
4444
- name: install ninja (osx)
4545
run: brew install ninja
46-
if: matrix.os == 'macos-12' || matrix.os == 'macos-14'
46+
if: matrix.os == 'macos-13' || matrix.os == 'macos-latest'
4747
- name: install ninja (win)
4848
run: choco install ninja
4949
if: matrix.os == 'windows-latest'

0 commit comments

Comments
 (0)