From 16c6c58f4d9f08c9c515c991c218bff235cff6e2 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 23 Dec 2024 23:09:22 +0100 Subject: [PATCH] Always run on the latest macOS runner They get deprecated real fast, and since you can target a specific SDK version the runner used shouldn't matter that much. Hopefully. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3be6997d..2a466b44 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,9 +22,9 @@ jobs: strategy: matrix: include: - - { name: ubuntu-20.04, os: ubuntu-20.04, cross-target: '' } - - { name: macos-universal, os: macos-12, cross-target: aarch64-apple-darwin } - - { name: windows, os: windows-latest, cross-target: '' } + - { name: ubuntu-20.04, os: ubuntu-20.04, cross-target: '' } + - { name: macos-universal, os: macos-macos-latest, cross-target: aarch64-apple-darwin } + - { name: windows, os: windows-latest, cross-target: '' } name: Package plugin binaries runs-on: ${{ matrix.os }} steps: