From 288a0692edc50dd7cf66a6b23899a61144ed94ef Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 10 Oct 2024 12:27:48 +0200 Subject: [PATCH] [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> --- .github/workflows/build.yml | 2 +- .github/workflows/reusable-docs.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.3