Skip to content

Commit 827582b

Browse files
cclaussrgommers
authored andcommitted
Upgrade from deprecated macos-13 to macos-15-intel in CI
Replace GitHub Actions runner image `macos-13` with `macos-15-intel` as recommended in: * https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down > The macOS 13 runner image will be retired by ___December 4th, 2025___. The currently available GitHub Actions macOS runners are: | macOS Version | runner.arch | |---------------|-------------| | macos-13 | X64 | | macos-14 | ARM64 | | macos-15 | ARM64 | | macos-15-intel | X64 | | macos-26 | ARM64 | | macos-latest | ARM64 |
1 parent e1d9081 commit 827582b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ jobs:
4444
strategy:
4545
fail-fast: false
4646
matrix:
47-
os: [ubuntu-latest, windows-latest, macos-13]
47+
os: [ubuntu-latest, windows-latest, macos-15-intel]
4848
python_version: ["3.12"]
4949
include:
5050
- os: windows-latest
5151
python_version: "3.10"
52-
- os: macos-13
52+
- os: macos-15-intel
5353
python_version: "3.10"
5454
- os: ubuntu-latest
5555
python_version: "3.11"
@@ -156,8 +156,8 @@ jobs:
156156
pip uninstall -y tensorflow
157157
pip install "thinc-apple-ops>=1.0.0,<2.0.0"
158158
python -m pytest --pyargs thinc_apple_ops
159-
if: matrix.os == 'macos-13' && matrix.python_version == '3.10'
159+
if: matrix.os == 'macos-15-intel' && matrix.python_version == '3.10'
160160

161161
- name: Run tests with thinc-apple-ops
162162
run: python -m pytest --pyargs thinc
163-
if: matrix.os == 'macos-13' && matrix.python_version == '3.10'
163+
if: matrix.os == 'macos-15-intel' && matrix.python_version == '3.10'

0 commit comments

Comments
 (0)