Skip to content

Commit c3ec8d4

Browse files
fix: Add support for Windows Server 2025 (#656)
obvious fix Signed-off-by: William Theaker <williamtheaker@users.noreply.github.com>
1 parent 8311013 commit c3ec8d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/kitchen/driver/aws/standard_platform

lib/kitchen/driver/aws/standard_platform/windows.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def windows_version_parts
133133

134134
def windows_name_filter
135135
major, revision, service_pack = windows_version_parts
136-
if [2022, 2019, 2016].include?(major)
136+
if [2025, 2022, 2019, 2016].include?(major)
137137
"Windows_Server-#{major}-English-Full-Base-*"
138138
elsif [1709, 1803].include?(major)
139139
"Windows_Server-#{major}-English-Core-ContainersLatest-*"

0 commit comments

Comments
 (0)