diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2024-10-10 09:34:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-10 09:34:55 (GMT) |
commit | 7a10cdec359750b5154490fa9e24475c90d05aab (patch) | |
tree | 51fac02b7d93788d51b9c81c84bc401cd65bf3e9 /.github | |
parent | 99400930ac1d4e5e10a5ae30f8202d8bc2661e39 (diff) | |
download | cpython-7a10cdec359750b5154490fa9e24475c90d05aab.zip cpython-7a10cdec359750b5154490fa9e24475c90d05aab.tar.gz cpython-7a10cdec359750b5154490fa9e24475c90d05aab.tar.bz2 |
Pin the doctest workflow to Ubuntu 22.04 (#125236)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/reusable-docs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/reusable-docs.yml b/.github/workflows/reusable-docs.yml index 4b021b3..7755cb4 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 |