From dac782eec74f0839069d9e63a4e23b97b858d720 Mon Sep 17 00:00:00 2001 From: Ted Turocy Date: Mon, 8 Dec 2025 20:53:15 +0000 Subject: [PATCH] Update MacOS version for GitHub runners. (#684) Closes #646. --- .github/workflows/osxbinary.yml | 4 ++-- .github/workflows/python.yml | 4 ++-- .github/workflows/tools.yml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/osxbinary.yml b/.github/workflows/osxbinary.yml index 025da0132..36e1955bb 100644 --- a/.github/workflows/osxbinary.yml +++ b/.github/workflows/osxbinary.yml @@ -13,7 +13,7 @@ on: jobs: macos-13: - runs-on: macos-13 + runs-on: macos-14 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - uses: actions/checkout@v5 @@ -37,5 +37,5 @@ jobs: - run: make osx-dmg - uses: actions/upload-artifact@v5 with: - name: artifact-osx-13 + name: artifact-osx-14 path: "*.dmg" diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 44af9bb9b..6c8605226 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -41,7 +41,7 @@ jobs: run: pytest macos-13: - runs-on: macos-13 + runs-on: macos-14 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name strategy: matrix: @@ -64,7 +64,7 @@ jobs: run: pytest macos-14: - runs-on: macos-14 + runs-on: macos-15 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name strategy: matrix: diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index 4cd26bc61..e4c052336 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -41,7 +41,7 @@ jobs: sudo make install macos: - runs-on: macos-13 + runs-on: macos-14 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - uses: actions/checkout@v5 @@ -56,11 +56,11 @@ jobs: - run: make osx-dmg - uses: actions/upload-artifact@v5 with: - name: artifact-osx-13 + name: artifact-osx-14 path: "*.dmg" macos-14: - runs-on: macos-14 + runs-on: macos-15 if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - uses: actions/checkout@v5 @@ -75,7 +75,7 @@ jobs: - run: make osx-dmg - uses: actions/upload-artifact@v5 with: - name: artifact-osx-14 + name: artifact-osx-15 path: "*.dmg" windows: