Skip to content

Commit

Permalink
Fix Windows e2e test (#1292)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
imjasonh authored Feb 15, 2022
1 parent 97826ab commit 80d1a2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 80d1a2f

Please sign in to comment.