Skip to content

Commit d4183ec

Browse files
authored
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 d3287f9 commit d4183ec

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727
strategy:
2828
matrix:
29-
os: [ubuntu-latest, windows-2022, macos-13, macos-14]
29+
os: [ubuntu-latest, windows-2022, macos-15-intel, macos-14]
3030

3131
# Avoid cancelling of all runs after a single failure.
3232
fail-fast: false
3333

3434
steps:
3535

36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737

38-
- uses: actions/setup-python@v5
38+
- uses: actions/setup-python@v6
3939
with:
4040
python-version: '3.12'
4141

@@ -54,9 +54,9 @@ jobs:
5454
run:
5555
python scripts/test.py -a PYMUPDF_test_args
5656

57-
# Upload generated wheels, to be accessible from github Actions page.
57+
# Upload generated wheels, to be accessible from GitHub Actions page.
5858
#
59-
- uses: actions/upload-artifact@v4
59+
- uses: actions/upload-artifact@v5
6060
with:
6161
path: |
6262
wheelhouse/pymupdf*.whl

0 commit comments

Comments
 (0)