Skip to content

Commit 2e4aafa

Browse files
committed
Build: CI: Replace deprecated macos-13 (intel) runner with new macos-15-intel
1 parent 01cf15d commit 2e4aafa

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ jobs:
428428
done
429429
430430
build-macos-intel:
431-
runs-on: macos-13
431+
runs-on: macos-15-intel
432432
if: true
433433
env:
434434
MACOSX_DEPLOYMENT_TARGET: "10.9"
@@ -638,7 +638,8 @@ jobs:
638638
fail-fast: false
639639
matrix:
640640
# https://docs.github.com/en/actions/reference/runners/github-hosted-runners#standard-github-hosted-runners-for-public-repositories
641-
os: [ubuntu-22.04, ubuntu-24.04, windows-2022, windows-2025, macos-13, macos-14, macos-15, macos-26]
641+
# https://github.com/actions/runner-images
642+
os: [ubuntu-22.04, ubuntu-24.04, windows-2022, windows-2025, macos-14, macos-15, macos-15-intel, macos-26]
642643
# Status of Python versions (https://devguide.python.org/versions/)
643644
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] # 3.14 doesn't have piper-tts wheels yet
644645
steps:
@@ -658,7 +659,7 @@ jobs:
658659
case "${{ matrix.os }}" in
659660
ubuntu-*) echo "name=wheels-linux" >> $GITHUB_OUTPUT ;;
660661
windows-*) echo "name=wheels-windows" >> $GITHUB_OUTPUT ;;
661-
macos-13) echo "name=wheels-macos-intel" >> $GITHUB_OUTPUT ;;
662+
macos-15-intel) echo "name=wheels-macos-intel" >> $GITHUB_OUTPUT ;;
662663
macos-*) echo "name=wheels-macos-arm" >> $GITHUB_OUTPUT ;;
663664
*) echo "Unexpected OS: ${{ matrix.os }}" 1>&2; exit 1 ;;
664665
esac

0 commit comments

Comments
 (0)