Browse Source

[3.10] gh-138744: GitHub Actions: pin to `windows-2022` (GH-138743) (GH-138757)

(cherry picked from commit 6e78a539bf)
pull/139053/head
Hugo van Kemenade 2 months ago
committed by GitHub
parent
commit
5c19c5bac6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      .github/workflows/build.yml
  2. 4
      .github/workflows/build_msi.yml

4
.github/workflows/build.yml

@ -143,7 +143,7 @@ jobs:
build_win32:
name: 'Windows (x86)'
runs-on: windows-latest
runs-on: windows-2022
needs: check_source
if: needs.check_source.outputs.run_tests == 'true'
env:
@ -159,7 +159,7 @@ jobs:
build_win_amd64:
name: 'Windows (x64)'
runs-on: windows-latest
runs-on: windows-2022
needs: check_source
if: needs.check_source.outputs.run_tests == 'true'
env:

4
.github/workflows/build_msi.yml

@ -32,7 +32,7 @@ concurrency:
jobs:
build_win32:
name: 'Windows (x86) Installer'
runs-on: windows-latest
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: Build CPython installer
@ -40,7 +40,7 @@ jobs:
build_win_amd64:
name: 'Windows (x64) Installer'
runs-on: windows-latest
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: Build CPython installer

Loading…
Cancel
Save