From 0eb856b1643b4f412ae77c3587e6cb168add8bfa Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Wed, 15 Jan 2025 19:42:02 -0800 Subject: [PATCH] Backport PR #527 on branch 3.x (PR: Use an older Ubuntu version on CIs) (#528) --- .github/workflows/linux-pip-tests.yml | 2 +- .github/workflows/linux-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux-pip-tests.yml b/.github/workflows/linux-pip-tests.yml index 1a4f1e5a..a5b65ec8 100644 --- a/.github/workflows/linux-pip-tests.yml +++ b/.github/workflows/linux-pip-tests.yml @@ -17,7 +17,7 @@ concurrency: jobs: linux: name: Linux (pip) - Py${{ matrix.PYTHON_VERSION }} - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 env: CI: True PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }} diff --git a/.github/workflows/linux-tests.yml b/.github/workflows/linux-tests.yml index 87381c3e..2567b15a 100644 --- a/.github/workflows/linux-tests.yml +++ b/.github/workflows/linux-tests.yml @@ -17,7 +17,7 @@ concurrency: jobs: linux: name: Linux - Py${{ matrix.PYTHON_VERSION }} - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 env: CI: True PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}