From 3e98589a767d9a17a3da90e52ae4abb198fa9ada Mon Sep 17 00:00:00 2001 From: Lorenz Leutgeb Date: Sat, 11 Oct 2025 14:45:41 +0200 Subject: [PATCH] github/build: Fix runner names Apparently `windows-latest-arm` does not exist and we should use `windows-11-arm`, ditto for `ubuntu-latest-arm` and `ubuntu-24.04-arm`. --- .github/workflows/build.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1adb78dd..c2021beb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,11 +11,12 @@ jobs: fail-fast: false matrix: os: - - macos-latest # arm64 - - ubuntu-latest-arm # arm64 - - ubuntu-latest # x64 - - windows-latest-arm # arm64 - - windows-latest # x64 + - macos-latest # arm64 + - ubuntu-24.04-arm # arm64 + - ubuntu-latest # x64 + - windows-11-arm # arm64 + - windows-latest # x64 + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2