Skip to content

Commit 6795d61

Browse files
authored
windows: bump version to Windows Server 2022 (#849)
See Windows Server 2019 is closing down https://github.blog/changelog/2025-04-15-upcoming-breaking-changes-and-releases-for-github-actions/ We’re beginning the process of closing down the Windows server 2019 hosted runner image, following our N-1 OS support policy. This image will be fully retired by June 30, 2025. --------- Signed-off-by: Kentaro Hayashi <[email protected]>
1 parent d74608e commit 6795d61

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/bundle-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
timeout-minutes: 90
1616
strategy:
1717
fail-fast: false
18-
runs-on: windows-2019
18+
runs-on: windows-2022
1919
steps:
2020
- name: Set up Ruby
2121
uses: ruby/setup-ruby@v1

.github/workflows/windows.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
timeout-minutes: 90
1515
strategy:
1616
fail-fast: false
17-
runs-on: windows-2019
17+
runs-on: windows-2022
1818
steps:
1919
- name: Set up Ruby
2020
uses: ruby/setup-ruby@v1
@@ -41,7 +41,7 @@ jobs:
4141
check_package_size:
4242
name: Check Package Size
4343
needs: build
44-
runs-on: windows-2019
44+
runs-on: windows-2022
4545
steps:
4646
- uses: actions/checkout@v4
4747
- uses: actions/download-artifact@v4
@@ -55,7 +55,7 @@ jobs:
5555
installation_test:
5656
name: Installation Test
5757
needs: build
58-
runs-on: windows-2019
58+
runs-on: windows-2022
5959
steps:
6060
- uses: actions/checkout@v4
6161
- uses: actions/download-artifact@v4
@@ -75,7 +75,7 @@ jobs:
7575
update_from_v4_test:
7676
name: Migration From v4 Test
7777
needs: build
78-
runs-on: windows-2019
78+
runs-on: windows-2022
7979
steps:
8080
- uses: actions/checkout@v4
8181
- uses: actions/download-artifact@v4
@@ -94,7 +94,7 @@ jobs:
9494
update_from_v5_test:
9595
name: Update From v5 Test
9696
needs: build
97-
runs-on: windows-2019
97+
runs-on: windows-2022
9898
steps:
9999
- uses: actions/checkout@v4
100100
- uses: actions/download-artifact@v4
@@ -113,7 +113,7 @@ jobs:
113113
serverspec_test:
114114
name: Serverspec Test
115115
needs: build
116-
runs-on: windows-2019
116+
runs-on: windows-2022
117117
steps:
118118
- uses: actions/checkout@v4
119119
- uses: actions/download-artifact@v4

fluent-package/msi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# The latest chocolatey requires .net 4.8, and wixtoolset requires .net 3.5,
1818
# To satisfy both of them without reboot, use sdk image.
19-
ARG FROM=mcr.microsoft.com/dotnet/framework/sdk:3.5-windowsservercore-ltsc2019
19+
ARG FROM=mcr.microsoft.com/dotnet/framework/sdk:3.5-windowsservercore-ltsc2022
2020
FROM ${FROM}
2121

2222
# Launch the following command as if cmd /S /C ...

0 commit comments

Comments
 (0)