Skip to content

Commit ff76c6f

Browse files
committed
Update macOS runners to macos-15
1 parent 7eb5d6a commit ff76c6f

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/prebuild-test-all.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os:
16-
- macos-13
17-
- macos-14
16+
- macos-15
17+
- macos-15-intel
1818
- windows-2022
1919
name: Prebuild on ${{ matrix.os }}
2020
runs-on: ${{ matrix.os }}

.github/workflows/prebuild-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ on:
2525
description: 'Test on windows-2022'
2626
type: boolean
2727
default: true
28-
macos-13:
29-
description: 'Test on macos-13'
28+
macos-15-intel:
29+
description: 'Test on macos-15'
3030
type: boolean
3131
default: true
3232
alpine:
@@ -41,7 +41,7 @@ env:
4141

4242
jobs:
4343
input-setup:
44-
if: inputs['ubuntu-22.04'] == true || inputs['windows-2022'] == true || inputs['macos-13'] == true
44+
if: inputs['ubuntu-22.04'] == true || inputs['windows-2022'] == true || inputs['macos-15-intel'] == true
4545
name: Preparing tests
4646
runs-on: ubuntu-latest
4747
outputs:
@@ -53,7 +53,7 @@ jobs:
5353
INPUTS='${{ toJSON(inputs) }}'
5454
PLATFORMS='{"os":[]}'
5555
56-
for os in 'ubuntu-22.04' 'windows-2022' 'macos-13'
56+
for os in 'ubuntu-22.04' 'windows-2022' 'macos-15-intel'
5757
do
5858
if [ "$(jq ".[\"$os\"]" <<< "$INPUTS")" = "true" ]; then PLATFORMS=$(jq -c ".os += [\"$os\"]" <<< "$PLATFORMS"); fi
5959
done
@@ -89,9 +89,9 @@ jobs:
8989
run: ${{ env.TEST_COMMAND }} --arch arm64
9090

9191
prebuild-test-mac-arm64:
92-
if: inputs.macos-13 == true && inputs.arm == true
92+
if: inputs.macos-15-intel == true && inputs.arm == true
9393
name: Testing prebuild on M1 macOS (arm64)
94-
runs-on: macos-14
94+
runs-on: macos-15
9595
steps:
9696
- uses: actions/checkout@v4
9797
- uses: actions/setup-node@v4

.github/workflows/prebuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os:
18-
- macos-13
19-
- macos-14
18+
- macos-15
19+
- macos-15-intel
2020
- windows-2022
2121
name: Prebuild on ${{ matrix.os }}
2222
runs-on: ${{ matrix.os }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
matrix:
1818
os:
1919
- ubuntu-22.04
20-
- macos-13
21-
- macos-14
20+
- macos-15
21+
- macos-15-intel
2222
- windows-2022
2323
node:
2424
- 20

0 commit comments

Comments
 (0)