Skip to content

Commit 220e677

Browse files
authored
[3.9] gh-138744: GitHub Actions: pin to windows-2022 (GH-138743) (GH-138758)
(cherry picked from commit 6e78a53)
1 parent 73f03e4 commit 220e677

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131

132132
build_win32:
133133
name: 'Windows (x86)'
134-
runs-on: windows-latest
134+
runs-on: windows-2022
135135
needs: check_source
136136
if: needs.check_source.outputs.run_tests == 'true'
137137
steps:
@@ -145,7 +145,7 @@ jobs:
145145

146146
build_win_amd64:
147147
name: 'Windows (x64)'
148-
runs-on: windows-latest
148+
runs-on: windows-2022
149149
needs: check_source
150150
if: needs.check_source.outputs.run_tests == 'true'
151151
steps:

.github/workflows/build_msi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ on:
2323
jobs:
2424
build_win32:
2525
name: 'Windows (x86) Installer'
26-
runs-on: windows-latest
26+
runs-on: windows-2022
2727
steps:
2828
- uses: actions/checkout@v4
2929
- name: Build CPython installer
3030
run: .\Tools\msi\build.bat -x86
3131

3232
build_win_amd64:
3333
name: 'Windows (x64) Installer'
34-
runs-on: windows-latest
34+
runs-on: windows-2022
3535
steps:
3636
- uses: actions/checkout@v4
3737
- name: Build CPython installer

0 commit comments

Comments
 (0)