diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-12-01 20:15:18 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-12-01 20:17:30 +0100 |
commit | 4f2bb474ec92698fed8a203b9b5f20783cb9b3d6 (patch) | |
tree | 9744edf1e9f531dbfa3396b02bba7b2d1ad66412 | |
parent | switch to tensin.name (diff) | |
download | linux-status-4f2bb474ec92698fed8a203b9b5f20783cb9b3d6.tar.gz linux-status-4f2bb474ec92698fed8a203b9b5f20783cb9b3d6.zip |
workflows/ci: ditch Bionic
It was (or about to be) retired by GitHub Actions, so it's time to say
goodbye.
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files 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 |