From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sat, 13 Sep 2025 20:35:01 +0000 (+0300) Subject: [3.9] gh-138744: GitHub Actions: pin to `windows-2022` (GH-138743) (GH-138758) X-Git-Tag: v3.9.24~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=220e67748a1e4f111a567dabe716357a1a351613;p=thirdparty%2FPython%2Fcpython.git [3.9] gh-138744: GitHub Actions: pin to `windows-2022` (GH-138743) (GH-138758) (cherry picked from commit 6e78a539bfb406238ec251ba01b7a1819e5c303e) --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index be48b9f405b8..7b3f02e454de 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -131,7 +131,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' steps: @@ -145,7 +145,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' steps: diff --git a/.github/workflows/build_msi.yml b/.github/workflows/build_msi.yml index 47b11843efed..d9e217d8a5e4 100644 --- a/.github/workflows/build_msi.yml +++ b/.github/workflows/build_msi.yml @@ -23,7 +23,7 @@ on: jobs: build_win32: name: 'Windows (x86) Installer' - runs-on: windows-latest + runs-on: windows-2022 steps: - uses: actions/checkout@v4 - name: Build CPython installer @@ -31,7 +31,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