From 0108f9d0ae0f34419efa5564316d79587367b64d Mon Sep 17 00:00:00 2001 From: Matt McShane Date: Fri, 28 Jan 2022 10:27:32 -0500 Subject: [PATCH] Prevent Windows 2022 being used for native-images GraalVM doesn't have an SDK for Windows Server 2022 yet so the native executable build fails if we catch an updated builder. Windows 2022 is becoming the default for `windows-latest` "real soon now" so pin the version in use to 2019. More context at https://github.com/actions/virtual-environments/issues/4856 --- .github/workflows/native-testserver-images.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/native-testserver-images.yml b/.github/workflows/native-testserver-images.yml index 735b9043b..3947ac2e6 100644 --- a/.github/workflows/native-testserver-images.yml +++ b/.github/workflows/native-testserver-images.yml @@ -27,7 +27,7 @@ jobs: - dist: macos-latest os_family: macOS arch: amd64 - - dist: windows-latest + - dist: windows-2019 os_family: windows arch: amd64 runs-on: ${{ matrix.dist }}