From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 10 Oct 2024 10:27:48 +0000 (+0200) Subject: [3.13] Pin the doctest workflow to Ubuntu 22.04 (GH-125236) (#125240) X-Git-Tag: v3.13.1~343 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=288a0692edc50dd7cf66a6b23899a61144ed94ef;p=thirdparty%2FPython%2Fcpython.git [3.13] Pin the doctest workflow to Ubuntu 22.04 (GH-125236) (#125240) Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4462bfa54a16..89bf7b1ea585 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,7 +42,7 @@ jobs: check_abi: name: 'Check if the ABI has changed' - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: check_source if: needs.check_source.outputs.run_tests == 'true' steps: diff --git a/.github/workflows/reusable-docs.yml b/.github/workflows/reusable-docs.yml index 4b021b3dc32f..7755cb431bd3 100644 --- a/.github/workflows/reusable-docs.yml +++ b/.github/workflows/reusable-docs.yml @@ -95,7 +95,7 @@ jobs: # Run "doctest" on HEAD as new syntax doesn't exist in the latest stable release doctest: name: 'Doctest' - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 timeout-minutes: 60 steps: - uses: actions/checkout@v4