From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sat, 13 Sep 2025 20:36:27 +0000 (+0300) Subject: [3.11] gh-138744: GitHub Actions: pin to `windows-2022` (GH-138743) (GH-138755) X-Git-Tag: v3.11.14~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=262aa73bd7d951775b4a4abb072640ddb97cb280;p=thirdparty%2FPython%2Fcpython.git [3.11] gh-138744: GitHub Actions: pin to `windows-2022` (GH-138743) (GH-138755) * [3.11] gh-138744: GitHub Actions: pin to `windows-2022` (GH-138743) (cherry picked from commit 6e78a539bfb406238ec251ba01b7a1819e5c303e) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> * Update .azure-pipelines/libffi-build.yml --- diff --git a/.github/workflows/build_msi.yml b/.github/workflows/build_msi.yml index 4c6e2678f716..1714f6fb3782 100644 --- a/.github/workflows/build_msi.yml +++ b/.github/workflows/build_msi.yml @@ -33,7 +33,7 @@ concurrency: jobs: build_win32: name: 'Windows (x86) Installer' - runs-on: windows-latest + runs-on: windows-2022 timeout-minutes: 60 steps: - uses: actions/checkout@v4 @@ -42,7 +42,7 @@ jobs: build_win_amd64: name: 'Windows (x64) Installer' - runs-on: windows-latest + runs-on: windows-2022 timeout-minutes: 60 steps: - uses: actions/checkout@v4 @@ -51,7 +51,7 @@ jobs: build_win_arm64: name: 'Windows (ARM64) Installer' - runs-on: windows-latest + runs-on: windows-2022 timeout-minutes: 60 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/reusable-windows.yml b/.github/workflows/reusable-windows.yml index 41f2c2b0c2cd..fc1e6aed1eca 100644 --- a/.github/workflows/reusable-windows.yml +++ b/.github/workflows/reusable-windows.yml @@ -9,7 +9,7 @@ on: jobs: build_win32: name: 'build and test (x86)' - runs-on: windows-latest + runs-on: windows-2022 timeout-minutes: 60 env: IncludeUwp: 'true' @@ -24,7 +24,7 @@ jobs: build_win_amd64: name: 'build and test (x64)' - runs-on: windows-latest + runs-on: windows-2022 timeout-minutes: 60 env: IncludeUwp: 'true' @@ -41,7 +41,7 @@ jobs: build_win_arm64: name: 'build (arm64)' - runs-on: windows-latest + runs-on: windows-2022 timeout-minutes: 60 env: IncludeUwp: 'true'