diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index ac54374..348b856 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - os: ['ubuntu-20.04', 'windows-2019'] + os: ['ubuntu-22.04', 'windows-2019'] fail-fast: false steps: @@ -43,7 +43,7 @@ jobs: python-version: "3.8" - name: Install dependencies (Linux) 🔧 - if: ${{ matrix.os == 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }} + if: ${{ matrix.os == 'ubuntu-22.04' && steps.changes.outputs.code == 'true' }} run: | python -VV python -m site @@ -51,7 +51,7 @@ jobs: python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0 - name: Install dependencies (Windows) 🔧 - if: ${{ matrix.os != 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }} + if: ${{ matrix.os != 'ubuntu-22.04' && steps.changes.outputs.code == 'true' }} run: | python -VV python -m site diff --git a/.github/workflows/python_ci_linux.yml b/.github/workflows/python_ci_linux.yml index 7d45834..66d768c 100644 --- a/.github/workflows/python_ci_linux.yml +++ b/.github/workflows/python_ci_linux.yml @@ -19,8 +19,8 @@ permissions: jobs: tests: - name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}" - runs-on: "ubuntu-20.04" + name: "ubuntu-22.04 / Python ${{ matrix.config.python-version }}" + runs-on: "ubuntu-22.04" continue-on-error: ${{ matrix.config.experimental }} env: USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.7,pypy-3.8,pypy-3.9' @@ -84,7 +84,7 @@ jobs: Coverage: needs: tests - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-22.04" steps: - name: Checkout 🛎️ uses: "actions/checkout@v4" @@ -133,7 +133,7 @@ jobs: Deploy: needs: tests - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-22.04" steps: - name: Checkout 🛎️ uses: "actions/checkout@v4"