Skip to content

Commit 28e4986

Browse files
Replace deprecated macos-13 GHA image with latest x64 image (#5649)
`macos-13` will soon be removed from github actions [[src](https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/)]. We are replacing it in our nightlies and release workflows with `macos-15-intel` which according to actions/runner-images#13045 is now available for building on x64. However, let's keep in mind that "Apple has discontinued support for the x86_64 (Intel) architecture. GitHub will no longer support this architecture on macOS after the macOS 15 runner image is retired in Fall 2027." [[src](https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/#notice-of-macos-x86_64-intel-architecture-deprecation)] --- TYPE: NO_HISTORY --------- Co-authored-by: Theodore Tsirpanis <[email protected]>
1 parent 7d80f7f commit 28e4986

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/nightly-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
triplet: x64-linux
7979
- os: windows-2022
8080
triplet: x64-windows
81-
- os: macos-13
81+
- os: macos-15-intel
8282
triplet: x64-osx
8383
deployment-target: 13
8484
- os: macos-latest

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
triplet: arm64-linux-release
6363
manylinux: quay.io/pypa/manylinux_2_28_aarch64
6464
- platform: macos-x86_64
65-
os: macos-13
65+
os: macos-latest
6666
cmake_args: -DCMAKE_OSX_ARCHITECTURES=x86_64
6767
MACOSX_DEPLOYMENT_TARGET: 11
6868
triplet: x64-osx-release

0 commit comments

Comments
 (0)