From b8757eba3f42deb039c1f2079c74b893238e80d4 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Thu, 2 May 2024 09:38:09 +0100 Subject: [PATCH] (build) Update what build runners are used Ubuntu 18.04 is out of support, and Cake.Git doesn't work on the latest version of macOS (which is the M1 variant), so need to pin to the latest within the 13 range. --- .github/workflows/build.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6fac9abe..ff978f78 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -11,7 +11,11 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-latest, ubuntu-18.04, macos-latest] + os: [ + windows-latest, + ubuntu-latest, + # Cake.Recipe currently does not support macOS 14 (M1) due to usage of Cake.Git. + macos-13] steps: - uses: actions/checkout@v3.1.0