From e36ed1a77171810e74b8441b95fc5f6fdb0929b0 Mon Sep 17 00:00:00 2001 From: Pierre-Luc Date: Fri, 17 Jan 2025 14:21:12 -0500 Subject: [PATCH] Fix the workflow to run on static version of Ubuntu Change the runs-on from ubuntu-latest to ubuntu-22.04 to avoid picking up ubuntu-24.04 (current ubuntu-latest). ubuntu-24.04 do not have Python 3.7 and is breaking the current matrix. Future improvement would be to include the `runs-on` in the matrix itself. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 84de9e65..19952e19 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: matrix: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]