From 66936cbc9b56035c3de7c365479b03a438b1400d Mon Sep 17 00:00:00 2001 From: Dan Rose Date: Thu, 31 Jul 2025 18:56:32 -0500 Subject: [PATCH] fix: switch Windows runner image Switch to a current github windows image. Previously, all CI test runs would fail with a message like: > Windows Server 2019 has been retired. The Windows Server 2019 image has been removed as of 2025-06-30. For more details, see https://github.com/actions/runner-images/issues/12045 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 03cde0b8..fbecf68f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: # arch isn't used and we have no way to use it currently - { os: macos-latest, arch: x64 } - { os: ubuntu-latest, arch: x64 } - - { os: windows-2019, arch: x64 } + - { os: windows-latest, arch: x64 } steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v3