From ca9c2c4650d858c127b8ff9311b99d959b2bffb4 Mon Sep 17 00:00:00 2001 From: Ana Maria Martinez Gomez Date: Tue, 19 Aug 2025 09:45:37 +0200 Subject: [PATCH 1/2] Remove windows-2019 from tested versions The windows-2019 GH runner we used to use to test packages has been removed: https://github.com/actions/runner-images/issues/12045 --- install.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install.ps1 b/install.ps1 index 64a6298..449e574 100644 --- a/install.ps1 +++ b/install.ps1 @@ -228,11 +228,10 @@ function Test-WindowsVersion { } } -# 17763: the version used by windows-2019 in GH actions # 19045: https://www.microsoft.com/en-us/software-download/windows10ISO downloaded on April 25 2023. # 20348: the version used by windows-2022 in GH actions function Test-TestedOS { - $testedVersions = @(17763, 19045, 20348) + $testedVersions = @(19045, 20348) try { $osVersion = (Get-CimInstance -class Win32_OperatingSystem).BuildNumber if (-not ($osVersion -in $testedVersions)){ From e3638756db1cb0979789cc0051ac55ccd538490d Mon Sep 17 00:00:00 2001 From: Ana Maria Martinez Gomez Date: Wed, 20 Aug 2025 09:29:32 +0200 Subject: [PATCH 2/2] Add 26100 to tested versions Add the Windows 11 version FLARE uses for testing to the tested versions. --- install.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.ps1 b/install.ps1 index 449e574..997d3ff 100644 --- a/install.ps1 +++ b/install.ps1 @@ -230,8 +230,9 @@ function Test-WindowsVersion { # 19045: https://www.microsoft.com/en-us/software-download/windows10ISO downloaded on April 25 2023. # 20348: the version used by windows-2022 in GH actions +# 26100: https://www.microsoft.com/en-us/software-download/windows11 downloaded on May 6 2025. function Test-TestedOS { - $testedVersions = @(19045, 20348) + $testedVersions = @(19045, 20348, 26100) try { $osVersion = (Get-CimInstance -class Win32_OperatingSystem).BuildNumber if (-not ($osVersion -in $testedVersions)){