From 65fddbd754ac058c0390b6ae08bc8b26241f81b5 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Mon, 15 Dec 2025 16:22:02 +0530 Subject: [PATCH] Replace macos-13 runners with macos-15 Reference: https://github.com/actions/runner-images/issues/13046 Signed-off-by: Ayan Sinha Mahapatra --- .github/workflows/scancode-release.yml | 4 ++-- azure-pipelines.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/scancode-release.yml b/.github/workflows/scancode-release.yml index 1ab052a598e..21fe24e35fb 100644 --- a/.github/workflows/scancode-release.yml +++ b/.github/workflows/scancode-release.yml @@ -239,7 +239,7 @@ jobs: strategy: fail-fast: true matrix: - os: [ubuntu-24.04, ubuntu-24.04, macos-13, macos-14] + os: [ubuntu-24.04, ubuntu-24.04, macos-14, macos-15] pyver: ["3.10", "3.11", "3.12", "3.13"] steps: @@ -375,7 +375,7 @@ jobs: strategy: fail-fast: true matrix: - os: [macos-13, macos-14] + os: [macos-14, macos-15] pyver: ["3.10", "3.11", "3.12", "3.13"] steps: diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b7fb0baac4a..6e1454119ab 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -147,8 +147,8 @@ jobs: - template: etc/ci/azure-posix.yml parameters: - job_name: macos13_cpython - image_name: macOS-13 + job_name: macos15_cpython + image_name: macOS-15 python_versions: ['3.10', '3.11', '3.12', '3.13'] test_suites: all: venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py --reruns 2 @@ -222,8 +222,8 @@ jobs: - template: etc/ci/azure-posix.yml parameters: - job_name: macos13_cpython_latest_from_pip - image_name: macos-13 + job_name: macos15_cpython_latest_from_pip + image_name: macos-15 python_versions: ['3.10', '3.11', '3.12', '3.13'] test_suites: all: venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py