Skip to content

Commit 2eeec1f

Browse files
committed
update ci to use macos-12
1 parent 7ec7651 commit 2eeec1f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,18 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
os: [macos-11, ubuntu-20.04, windows-2022]
31+
os: [macos-12, ubuntu-20.04, windows-2022]
3232
major: [3]
3333
minor: [7, 8]
3434
runs-on: ${{ matrix.os }}
3535
steps:
3636
- uses: actions/checkout@master
3737
- uses: actions/setup-python@master
3838
- run: echo '::add-matcher::.github/problem-matchers/gcc.json'
39-
if: matrix.os == 'macos-11' || matrix.os == 'ubuntu-20.04'
39+
if: matrix.os == 'macos-12' || matrix.os == 'ubuntu-20.04'
4040
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
4141
if: matrix.os == 'windows-2022'
42+
4243
- uses: pypa/cibuildwheel@v2.12.3
4344
with:
4445
output-dir: dist
@@ -58,17 +59,18 @@ jobs:
5859
strategy:
5960
fail-fast: false
6061
matrix:
61-
os: [macos-11, ubuntu-20.04, windows-2022]
62+
os: [macos-12, ubuntu-20.04, windows-2022]
6263
major: [3]
6364
minor: [9, 10, 11]
6465
runs-on: ${{ matrix.os }}
6566
steps:
6667
- uses: actions/checkout@master
6768
- uses: actions/setup-python@master
6869
- run: echo '::add-matcher::.github/problem-matchers/gcc.json'
69-
if: matrix.os == 'macos-11' || matrix.os == 'ubuntu-20.04'
70+
if: matrix.os == 'macos-12' || matrix.os == 'ubuntu-20.04'
7071
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
7172
if: matrix.os == 'windows-2022'
73+
7274
- uses: pypa/cibuildwheel@v2.12.3
7375
with:
7476
output-dir: dist

0 commit comments

Comments
 (0)