From a0d1f08f7940c0a0cc00ee1337f9ac14cabf96b8 Mon Sep 17 00:00:00 2001 From: Gareth Reese Date: Tue, 23 Apr 2024 08:58:42 +0100 Subject: [PATCH] Let's build on 13 and 14 as 12 is too old --- .github/workflows/pull-request.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 998f522..af5d298 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -7,9 +7,9 @@ on: branches: [main] jobs: - macos-build: + macos-build-14: # macOS-latest images are not the most recent - # The macos-latest workflow label currently uses the macOS 12 runner image + # The macos-latest workflow label currently uses the macOS 12 runner image, which doesn't include the build-tools we need # The vast majority of macOS developers would be using the latest version of macOS # Current list here: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#choosing-github-hosted-runners runs-on: macOS-14 @@ -21,10 +21,10 @@ jobs: - name: Run tests run: swift test -v - macos-build-latest: - # Let's also check that the code builds on the 'latest' macOS version according to Microsoft - # At 23rd April 2023 the latest macOS version is macOS 12 - runs-on: macOS-latest + macos-build-13: + # Let's also check that the code builds on macOS 13 + # At 23rd April 2023 the 'latest' macOS version is macOS 12 + runs-on: macOS-13 steps: - uses: actions/checkout@v4