diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 16dc9054..d6b0b43e 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -28,7 +28,7 @@ jobs: strategy: fail-fast: false matrix: - os: ["macos-latest", "ubuntu-latest"] + os: ["macos-12", "ubuntu-latest"] python-version: ["3.8", "3.10", "3.11"] runs-on: ${{ matrix.os }} name: ${{ matrix.os }} ${{ matrix.python-version }} Test @@ -65,7 +65,7 @@ jobs: ./.github/scripts/worker_install_linux_deps.sh - name: Set up Mac - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-12' run: | ./.github/scripts/worker_install_mac_deps.sh diff --git a/.github/workflows/publish_draft_bundle.yml b/.github/workflows/publish_draft_bundle.yml index dc5206ca..1bc99edb 100644 --- a/.github/workflows/publish_draft_bundle.yml +++ b/.github/workflows/publish_draft_bundle.yml @@ -93,7 +93,7 @@ jobs: fail-fast: false matrix: python-version: ${{ fromJSON(needs.build-python-matrix.outputs.python_versions) }} - os: ["macos-latest", "ubuntu-latest"] + os: ["macos-12", "ubuntu-latest"] name: ${{ matrix.os }} - ${{ matrix.python-version }} runs-on: ${{ matrix.os }} @@ -110,7 +110,7 @@ jobs: echo "os_platform=linux" >> $GITHUB_ENV - name: "Set Mac OS" - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-12' run: | echo "os_platform=mac" >> $GITHUB_ENV diff --git a/.github/workflows/release_draft_bundle.yml b/.github/workflows/release_draft_bundle.yml index dee380a0..b3a6df82 100644 --- a/.github/workflows/release_draft_bundle.yml +++ b/.github/workflows/release_draft_bundle.yml @@ -135,7 +135,7 @@ jobs: fail-fast: false matrix: python-version: ${{ fromJSON(needs.build-python-matrix.outputs.python_versions) }} - os: ["macos-latest", "ubuntu-latest"] + os: ["macos-12", "ubuntu-latest"] exclude: - python-version: 3.8 os: ubuntu-latest @@ -160,7 +160,7 @@ jobs: ./.github/scripts/worker_install_linux_deps.sh - name: "Install Mac Dependencies" - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-12' run: | echo "os_platform=mac" >> $GITHUB_ENV ./.github/scripts/worker_install_mac_deps.sh diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index 6dc7559b..0f9c4ded 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -63,7 +63,7 @@ jobs: run: | if [[ ${{ inputs.os_platform }} == 'mac' ]] then - echo "platform=macos-latest" >> $GITHUB_OUTPUT + echo "platform=macos-12" >> $GITHUB_OUTPUT elif [[ ${{ inputs.os_platform }} == 'linux' ]] then echo "platform=ubuntu-latest" >> $GITHUB_OUTPUT