From 9a76ceae665a7e83f90bae217420e579efae9fb1 Mon Sep 17 00:00:00 2001 From: Aaron Kimbrell Date: Tue, 16 Dec 2025 14:32:20 -0600 Subject: [PATCH] Update macOS version in CI workflow --- .github/workflows/build-and-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 2369ae27..cef0dead 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -13,7 +13,7 @@ jobs: continue-on-error: true strategy: matrix: - os: [ windows-2022, ubuntu-22.04, macos-latest ] + os: [ windows-2022, ubuntu-22.04, macos-14 ] steps: - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 @@ -26,7 +26,7 @@ jobs: vs-version: '[17,18)' msbuild-architecture: x64 - name: Install libssl and switch to XCode 15.2 (Mac Only) - if: ${{ matrix.os == 'macos-latest' }} + if: ${{ matrix.os == 'macos-14' }} run: | brew install openssl@3 - name: Get CMake 3.x