From d4183ec031fb66acde8315007575c5d232471d80 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 30 Oct 2025 16:32:02 +0100 Subject: [PATCH] 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 | --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c7b59c722..9a3621747 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,16 +26,16 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, windows-2022, macos-13, macos-14] + os: [ubuntu-latest, windows-2022, macos-15-intel, macos-14] # Avoid cancelling of all runs after a single failure. fail-fast: false steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.12' @@ -54,9 +54,9 @@ jobs: run: python scripts/test.py -a PYMUPDF_test_args - # Upload generated wheels, to be accessible from github Actions page. + # Upload generated wheels, to be accessible from GitHub Actions page. # - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: path: | wheelhouse/pymupdf*.whl