From efaaf718bd68752b26bba1156b259b6d3c759517 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Tue, 15 Feb 2022 10:22:46 -0500 Subject: [PATCH] Fix Windows e2e test GitHub Actions recently updated the Windows version used by windows-latest, which is no longer compatible with the nanoserver:1809 base image used in our Windows e2e test. Using :ltsc2022 instead should ensure we have a compatible image. --- .github/workflows/e2e.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 6b0419aa4..6baba7feb 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -32,7 +32,7 @@ jobs: base=alpine platform=linux/amd64 if [[ "${{ matrix.platform }}" == "windows-latest" ]]; then - base=mcr.microsoft.com/windows/nanoserver:1809 + base=mcr.microsoft.com/windows/nanoserver:ltsc2022 platform=windows/amd64 fi