From 6109bfbdc90057f7ec0813763a05b5c6b2e42804 Mon Sep 17 00:00:00 2001 From: Jiangzhou He Date: Tue, 25 Nov 2025 09:36:27 -0800 Subject: [PATCH] ops: use `macos-15-intel` instead of `macos-13` --- .github/workflows/_test.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index 9415728d..799f7a8e 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -18,7 +18,7 @@ jobs: - { runner: ubuntu-latest, python_exec: ".venv/bin/python" } - { runner: ubuntu-24.04-arm, python_exec: ".venv/bin/python" } - { runner: macos-latest, python_exec: ".venv/bin/python", extra_rustflags: "-C split-debuginfo=off"} - - { runner: macos-13, python_exec: ".venv/bin/python", extra_rustflags: "-C split-debuginfo=off"} + - { runner: macos-15-intel, python_exec: ".venv/bin/python", extra_rustflags: "-C split-debuginfo=off"} - { runner: windows-latest, python_exec: ".venv\\Scripts\\python" } runs-on: ${{ matrix.platform.runner }} env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fdefe85f..39ee7f39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: - { os: linux, runner: ubuntu-latest, target: x86_64, container: "ghcr.io/rust-cross/manylinux_2_28-cross:x86_64" } - { os: linux, runner: ubuntu-24.04-arm, target: aarch64, container: "ghcr.io/rust-cross/manylinux_2_28-cross:aarch64" } - { os: macos, runner: macos-latest, target: aarch64 } - - { os: macos, runner: macos-13, target: x86_64 } + - { os: macos, runner: macos-15-intel, target: x86_64 } - { os: windows, runner: windows-latest, target: x64 } steps: - uses: actions/checkout@v4