From 4f2bb474ec92698fed8a203b9b5f20783cb9b3d6 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 1 Dec 2023 20:15:18 +0100 Subject: workflows/ci: ditch Bionic It was (or about to be) retired by GitHub Actions, so it's time to say goodbye. --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71227f3..1725bcd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,10 +9,8 @@ jobs: test: strategy: matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] - # Unpin when this is fixed: - # https://github.com/actions/setup-python/issues/544 - runs-on: ubuntu-20.04 + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.x'] + runs-on: ubuntu-latest name: 'Python ${{ matrix.python-version }}' steps: - name: Checkout -- cgit v1.2.3