Skip to content

Commit 0b90299

Browse files
Updated files with 'repo_helper'.
1 parent 087e9f9 commit 0b90299

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/mypy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
os: ['ubuntu-20.04', 'windows-2019']
23+
os: ['ubuntu-22.04', 'windows-2019']
2424
fail-fast: false
2525

2626
steps:
@@ -43,15 +43,15 @@ jobs:
4343
python-version: "3.8"
4444

4545
- name: Install dependencies (Linux) 🔧
46-
if: ${{ matrix.os == 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }}
46+
if: ${{ matrix.os == 'ubuntu-22.04' && steps.changes.outputs.code == 'true' }}
4747
run: |
4848
python -VV
4949
python -m site
5050
python -m pip install --upgrade pip setuptools wheel
5151
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
5252
5353
- name: Install dependencies (Windows) 🔧
54-
if: ${{ matrix.os != 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }}
54+
if: ${{ matrix.os != 'ubuntu-22.04' && steps.changes.outputs.code == 'true' }}
5555
run: |
5656
python -VV
5757
python -m site

.github/workflows/python_ci_linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ permissions:
1919

2020
jobs:
2121
tests:
22-
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
23-
runs-on: "ubuntu-20.04"
22+
name: "ubuntu-22.04 / Python ${{ matrix.config.python-version }}"
23+
runs-on: "ubuntu-22.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
2626
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
@@ -86,7 +86,7 @@ jobs:
8686

8787
Coverage:
8888
needs: tests
89-
runs-on: "ubuntu-20.04"
89+
runs-on: "ubuntu-22.04"
9090
steps:
9191
- name: Checkout 🛎️
9292
uses: "actions/checkout@v4"
@@ -135,7 +135,7 @@ jobs:
135135
Deploy:
136136
needs: tests
137137

138-
runs-on: "ubuntu-20.04"
138+
runs-on: "ubuntu-22.04"
139139
steps:
140140
- name: Checkout 🛎️
141141
uses: "actions/checkout@v4"

0 commit comments

Comments
 (0)