]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Pin the doctest workflow to Ubuntu 22.04 (GH-125236) (#125240)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 10 Oct 2024 10:27:48 +0000 (12:27 +0200)
committerGitHub <noreply@github.com>
Thu, 10 Oct 2024 10:27:48 +0000 (10:27 +0000)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
.github/workflows/build.yml
.github/workflows/reusable-docs.yml

index 4462bfa54a16cf7210135101efac2eea275b08e6..89bf7b1ea585c61e88f9227c65cb602b48bc7fb9 100644 (file)
@@ -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:
index 4b021b3dc32f154bca64785195c6f23823bbe1bf..7755cb431bd3015d39f4e0187a35ee2b02b16000 100644 (file)
@@ -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