From 1ddeb03ed6e253d252f3c3ea711e8be3fa194660 Mon Sep 17 00:00:00 2001 From: KauriHero Date: Wed, 5 Nov 2025 12:46:52 +1300 Subject: [PATCH 1/2] update ci-matrix to test new runners --- .github/workflows/ci-matrix.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-matrix.yml b/.github/workflows/ci-matrix.yml index 5285afcbd..74cdf8e0e 100644 --- a/.github/workflows/ci-matrix.yml +++ b/.github/workflows/ci-matrix.yml @@ -14,8 +14,8 @@ jobs: matrix: target: - { name: linux, os: ubuntu-22.04 } - - { name: macos, os: macos-13 } - - { name: windows, os: windows-2022 } + - { name: macos, os: macos-latest } + - { name: windows, os: windows-latest } name: Build node on ${{ matrix.target.os }} runs-on: ${{ matrix.target.os }} From 93209c07428d76aa75e7782b5b92b03f20fc805f Mon Sep 17 00:00:00 2001 From: KauriHero Date: Thu, 6 Nov 2025 10:22:37 +1300 Subject: [PATCH 2/2] Revert Windows runner in CI matrix Moving windows runner back to 2022, so we can allow macos-latest to fully run through Actions --- .github/workflows/ci-matrix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-matrix.yml b/.github/workflows/ci-matrix.yml index 74cdf8e0e..b444643e8 100644 --- a/.github/workflows/ci-matrix.yml +++ b/.github/workflows/ci-matrix.yml @@ -15,7 +15,7 @@ jobs: target: - { name: linux, os: ubuntu-22.04 } - { name: macos, os: macos-latest } - - { name: windows, os: windows-latest } + - { name: windows, os: windows-2022 } name: Build node on ${{ matrix.target.os }} runs-on: ${{ matrix.target.os }}