From 9c24b80e6e2f5f243a40bfb117bbc7ca6b22f0bf Mon Sep 17 00:00:00 2001 From: Jeffrey Huynh Date: Fri, 26 Apr 2024 15:06:36 -0700 Subject: [PATCH] [No Ticket]: Change GitHub actions to use macos-12 (#1419) * change macos-latest to macos-12 for all github workflows --- .github/workflows/build-all.yml | 4 ++-- .github/workflows/install-script-test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 7fed119755..675a949834 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: - os: ['windows-latest', 'ubuntu-latest', 'macos-latest'] + os: ['windows-latest', 'ubuntu-latest', 'macos-12'] include: - os: ubuntu-latest os-name: Linux @@ -27,7 +27,7 @@ jobs: project-file: cabal.project.ci.linux ghc: '9.4.8' - - os: macos-latest + - os: macos-12 os-name: macOS project-file: cabal.project.ci.macos ghc: '9.4.8' diff --git a/.github/workflows/install-script-test.yml b/.github/workflows/install-script-test.yml index 9acf811d7e..ed1a9c6ce5 100644 --- a/.github/workflows/install-script-test.yml +++ b/.github/workflows/install-script-test.yml @@ -6,7 +6,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest, macos-12] steps: - uses: actions/checkout@v4