From 5dfa5382f97d2abff970cf143f12410ab3c044d6 Mon Sep 17 00:00:00 2001 From: Peter Feerick Date: Thu, 17 Oct 2024 11:01:55 +1000 Subject: [PATCH 1/2] chore: bump to macosx-13 GitHub is ending macosx-12 support in December 2024 --- .github/workflows/macosx_cpn.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macosx_cpn.yml b/.github/workflows/macosx_cpn.yml index 681db6b3be8..6c6719c7069 100644 --- a/.github/workflows/macosx_cpn.yml +++ b/.github/workflows/macosx_cpn.yml @@ -32,7 +32,7 @@ jobs: # well on Windows or Mac. You can convert this to a matrix build if you need # cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - runs-on: macos-12 + runs-on: macos-13 steps: - name: Select XCode version From a748a64a2b6840b4ea39a66efa8925b62c59e141 Mon Sep 17 00:00:00 2001 From: Peter Feerick Date: Thu, 17 Oct 2024 11:07:52 +1000 Subject: [PATCH 2/2] chore: bump xcode version Minimum available verison now 14.1.0 --- .github/workflows/macosx_cpn.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macosx_cpn.yml b/.github/workflows/macosx_cpn.yml index 6c6719c7069..293938f8a5d 100644 --- a/.github/workflows/macosx_cpn.yml +++ b/.github/workflows/macosx_cpn.yml @@ -38,7 +38,7 @@ jobs: - name: Select XCode version uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '13.2.1' + xcode-version: '14.1.0' - name: Check out the repo uses: actions/checkout@v4