From 4ac2379c2da25490e041e079bc3d0c9103e33805 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Sun, 28 Apr 2024 16:34:29 +0100 Subject: [PATCH] Pin GHA MacOS jobs to MacOS 12 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57273ff45bd..56d343c2fa4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,7 +97,7 @@ jobs: tests-unix: name: tests / ${{ matrix.python.key || matrix.python }} / ${{ matrix.os }} - runs-on: ${{ matrix.os }}-latest + runs-on: ${{ matrix.os }} needs: [packaging, determine-changes] if: >- @@ -107,7 +107,7 @@ jobs: strategy: fail-fast: true matrix: - os: [Ubuntu, MacOS] + os: [ubuntu-latest, macos-12] python: - "3.8" - "3.9"