Skip to content

Commit ca9c2c4

Browse files
committed
Remove windows-2019 from tested versions
The windows-2019 GH runner we used to use to test packages has been removed: actions/runner-images#12045
1 parent 3825725 commit ca9c2c4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

install.ps1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,11 +228,10 @@ function Test-WindowsVersion {
228228
}
229229
}
230230

231-
# 17763: the version used by windows-2019 in GH actions
232231
# 19045: https://www.microsoft.com/en-us/software-download/windows10ISO downloaded on April 25 2023.
233232
# 20348: the version used by windows-2022 in GH actions
234233
function Test-TestedOS {
235-
$testedVersions = @(17763, 19045, 20348)
234+
$testedVersions = @(19045, 20348)
236235
try {
237236
$osVersion = (Get-CimInstance -class Win32_OperatingSystem).BuildNumber
238237
if (-not ($osVersion -in $testedVersions)){

0 commit comments

Comments
 (0)