From c0ab8bf08a020ded7819803caad57f3e4ba925f4 Mon Sep 17 00:00:00 2001 From: Abhinav Anil Sharma Date: Tue, 2 Jul 2024 08:49:18 -0400 Subject: [PATCH] Upgrade to macos-11 for ci-osx Upgrades to macos-11 for ci-osx. As informed by https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/, macos-11 is now deprecated. Here we upgrade to the immediately next version for now, as that is least likely to introduce compatibility issues. Issue: #6864 --- .github/workflows/ci-osx.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-osx.yml b/.github/workflows/ci-osx.yml index 0bf789ee7df..9130f3d6f38 100644 --- a/.github/workflows/ci-osx.yml +++ b/.github/workflows/ci-osx.yml @@ -51,7 +51,7 @@ defaults: jobs: # 64-bit OSX build with clang and run tests: osx-x86-64: - runs-on: macos-11 + runs-on: macos-12 steps: - uses: actions/checkout@v2