From 3d8c6c17e2ea112e4a7714ee60ada2595492fdb9 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 16 Jan 2023 10:26:24 +0100 Subject: [PATCH] tests: pin ubuntu 20.04 version in github action for pytest 3.6 has reached EOL and is no longer supported in newer ubuntu releases. Signed-off-by: Guillaume Abrioux --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 91e9f4ccb..9527a536d 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -10,7 +10,7 @@ on: - 'tests/plugins/filter/**.py' jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: python-version: [3.6, 3.7, 3.8] -- 2.39.5