From f61fc60c1e82aa6f05211677131f9113943dc529 Mon Sep 17 00:00:00 2001 From: Will Childs-Klein Date: Wed, 3 Jul 2024 19:20:17 +0000 Subject: [PATCH] Set macOS to latest placeholder macOS 11 has [been deprecated][1] by GitHub actions runners. [1]: https://github.com/actions/runner-images/issues/9255#issuecomment-2080437770 --- .github/workflows/osx.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index f263acb82f..86cce63b56 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -14,7 +14,7 @@ env: jobs: macOS: - runs-on: macos-11 # latest + runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Build ${{ env.PACKAGE_NAME }} @@ -22,7 +22,7 @@ jobs: ./tests/ci/run_posix_tests.sh macOS-FIPS: - runs-on: macos-11 # latest + runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Build ${{ env.PACKAGE_NAME }} with FIPS mode