From 1117698654133973618a6ca64a3f66dfff3768f0 Mon Sep 17 00:00:00 2001 From: Ryan Richter Date: Tue, 3 Feb 2026 11:23:49 -0500 Subject: [PATCH] (#300) Add Server 2025 & Remove Server 2019 From Tests --- .github/workflows/Helpers.psm1 | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Helpers.psm1 b/.github/workflows/Helpers.psm1 index 4bb2647..0b3eee2 100644 --- a/.github/workflows/Helpers.psm1 +++ b/.github/workflows/Helpers.psm1 @@ -7,7 +7,7 @@ function New-TestVM { [Parameter()] [string]$Name = "qsg-$((New-Guid).ToString() -replace '-' -replace '^(.{11}).+$', '$1')", - [ValidateSet("Win2022AzureEditionCore", "Win2019Datacenter")] + [ValidateSet("Win2022AzureEditionCore", "2025-datacenter-azure-edition-core")] [string]$Image = "Win2022AzureEditionCore", [ArgumentCompleter({ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2d28ad2..7fe2be5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ on: images: description: The Azure images to test on. - default: Win2022AzureEditionCore, Win2019Datacenter + default: Win2022AzureEditionCore, 2025-datacenter-azure-edition-core type: string variants: @@ -64,7 +64,7 @@ jobs: $Trigger = Invoke-RestMethod "$GitHubApi/repos/${{ github.repository }}/collaborators/${{ github.actor }}/permission" @AuthHeaders if ($Trigger.Permission -in @("admin", "write")) { - $Images = "Win2022AzureEditionCore", "Win2019Datacenter" + $Images = "Win2022AzureEditionCore", "2025-datacenter-azure-edition-core" $Variants = "self-signed", "single", "wildcard" } else { Write-Error "Action was triggered by '${{ github.actor }}', who has '$TriggerPermission': Cancelling build."