From cb38925c97dfdc054da26a1ba92c67c54a425128 Mon Sep 17 00:00:00 2001 From: GreasySlug <9619abgoni@gmail.com> Date: Wed, 31 Dec 2025 20:22:56 +0900 Subject: [PATCH] fix(ci): update macOS version in ci workflows to macos-15-intel --- .github/workflows/main.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3ece02533..48fdffa08 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,7 +35,7 @@ jobs: fail-fast: false matrix: # M1 Mac does not support Python 3.7~3.9 - os: [windows-latest, ubuntu-22.04, macos-13] + os: [windows-latest, ubuntu-22.04, macos-15-intel] python-version: ['3.7', '3.8', '3.9', '3.10', '3.11.3'] runs-on: ${{ matrix.os }} env: @@ -60,7 +60,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-latest, ubuntu-latest, macos-13, macos-latest] + os: [windows-latest, ubuntu-latest, macos-15-intel, macos-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52bd9a8ed..1c29d148f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,9 +39,9 @@ jobs: - target: aarch64-unknown-linux-gnu os: ubuntu-latest - target: x86_64-apple-darwin - os: macos-13 + os: macos-15-intel - target: aarch64-apple-darwin - os: macos-13 + os: macos-latest - target: x86_64-pc-windows-msvc os: windows-latest - target: i686-pc-windows-msvc