Skip to content

Commit

Permalink
CI: Use latest macOS images (#2517)
Browse files Browse the repository at this point in the history
macos-12 is no longer available, this changes it to macos-13 (latest
available x64 macos)

macos-14 is changed to macos-latest (arm64)
  • Loading branch information
SoniEx2 authored Dec 5, 2024
1 parent 0583f0f commit c6a4f63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-12, macos-14, windows-latest]
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
steps:
- uses: actions/setup-python@v5
with:
Expand All @@ -43,7 +43,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
- name: install ninja (osx)
run: brew install ninja
if: matrix.os == 'macos-12' || matrix.os == 'macos-14'
if: matrix.os == 'macos-13' || matrix.os == 'macos-latest'
- name: install ninja (win)
run: choco install ninja
if: matrix.os == 'windows-latest'
Expand Down

0 comments on commit c6a4f63

Please sign in to comment.