From 2cfc362e709749fc0f2a43a7513e5add455f50fc Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 5 Nov 2024 08:57:39 -0800 Subject: [PATCH 1/2] move github runner from macos-12 to macos-14 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4913917f4..24d2fa60b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -174,7 +174,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-12, windows-latest] + os: [ubuntu-latest, macos-14, windows-latest] python-version: ['3.9', '3.10', '3.11', '3.12'] dist-type: ['whl', 'gz'] From f8f20e84e9ad3ffcd8ba0d18b8d53c12b1a65f0e Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 5 Nov 2024 09:24:15 -0800 Subject: [PATCH 2/2] move github runner from macos-12 to macos-14 --- .github/scripts/integration-test-matrix.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/integration-test-matrix.js b/.github/scripts/integration-test-matrix.js index 756c21d5e..e2c88b00b 100644 --- a/.github/scripts/integration-test-matrix.js +++ b/.github/scripts/integration-test-matrix.js @@ -44,7 +44,7 @@ module.exports = ({ context }) => { if (labels.includes("test macos") || testAllLabel) { include.push({ - os: "macos-12", + os: "macos-14", adapter, "python-version": pythonVersion, }); @@ -78,7 +78,7 @@ module.exports = ({ context }) => { // additionally include runs for all adapters, on macos and windows, // but only for the default python version for (const adapter of supportedAdapters) { - for (const operatingSystem of ["windows-latest", "macos-12"]) { + for (const operatingSystem of ["windows-latest", "macos-14"]) { include.push({ os: operatingSystem, adapter: adapter,