Skip to content

Commit 43a921e

Browse files
committed
build: Update builds to macOS 13 images
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 4b0fb12 commit 43a921e

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,12 @@ jobs:
179179
fail-fast: false
180180
matrix:
181181
settings:
182-
- host: macos-12
182+
- host: macos-13
183183
target: x86_64-apple-darwin
184184
build: |
185185
yarn build
186186
strip -x *.node
187-
- host: macos-12
187+
- host: macos-13
188188
target: aarch64-apple-darwin
189189
build: |
190190
sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/*;
@@ -425,7 +425,7 @@ jobs:
425425
strategy:
426426
fail-fast: false
427427
matrix:
428-
os: [ubuntu-22.04, macos-12, windows-2022]
428+
os: [ubuntu-22.04, macos-13, windows-2022]
429429
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
430430

431431
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
@@ -460,8 +460,11 @@ jobs:
460460
strategy:
461461
fail-fast: false
462462
matrix:
463-
os: [ubuntu-22.04, macos-12, windows-2022]
463+
os: [ubuntu-22.04, macos-13, windows-2022]
464464
ruby-version: ["2.7", "3.2", "3.3"]
465+
exclude:
466+
- os: "macos-13"
467+
ruby-version: "2.7"
465468

466469
name: Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
467470
runs-on: ${{ matrix.os }}

.github/workflows/javascript-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
settings:
14-
- host: macos-12
14+
- host: macos-13
1515
target: x86_64-apple-darwin
1616
build: |
1717
yarn build
1818
strip -x *.node
19-
- host: macos-12
19+
- host: macos-13
2020
target: aarch64-apple-darwin
2121
build: |
2222
sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/*;

.github/workflows/python-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
path: dist
4343

4444
macos-x86_64:
45-
runs-on: macos-12
45+
runs-on: macos-13
4646
steps:
4747
- uses: actions/checkout@v4
4848
- uses: actions/setup-python@v5
@@ -65,7 +65,7 @@ jobs:
6565
path: dist
6666

6767
macos-universal:
68-
runs-on: macos-12
68+
runs-on: macos-13
6969
steps:
7070
- uses: actions/checkout@v4
7171
- uses: actions/setup-python@v5
@@ -246,15 +246,15 @@ jobs:
246246
runs-on: ${{ matrix.os }}
247247
strategy:
248248
matrix:
249-
os: [ubuntu-22.04, macos-12]
249+
os: [ubuntu-22.04, macos-13]
250250
target: [x86_64, aarch64]
251251
python-version:
252252
- "3.7"
253253
- "3.8"
254254
- "3.9"
255255
- "3.10"
256256
exclude:
257-
- os: macos-12
257+
- os: macos-13
258258
target: aarch64
259259
steps:
260260
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)