From 1af0391cd227b9b32bf53fb604207f2d734fa73e Mon Sep 17 00:00:00 2001 From: Dmitry Dygalo Date: Wed, 29 Nov 2023 19:49:28 +0100 Subject: [PATCH] build: Update containers to `ubuntu-22.04` --- .github/workflows/build.yml | 6 +++--- .github/workflows/commit.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2ea6bd9..2c93343 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ on: jobs: pre-commit: name: Generic pre-commit checks - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4.1.1 with: @@ -32,7 +32,7 @@ jobs: mypy: name: Mypy - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4.1.1 with: @@ -48,7 +48,7 @@ jobs: tests: strategy: matrix: - os: [ubuntu-20.04] + os: [ubuntu-22.04] python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] name: ${{ matrix.os }}/tests_${{ matrix.python }} diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index 745e173..86bf899 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -10,7 +10,7 @@ on: jobs: commitsar: name: Verify commit messages - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Check out code uses: actions/checkout@v4.1.1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4a7e720..24b9f80 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: build-n-publish: name: Build and publish Python 🐍distributions 📦 to PyPI - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4.1.1 - name: Set up Python 3.9