Skip to content

Commit 86c6e6d

Browse files
committed
Fix ubuntu version
1 parent baa193f commit 86c6e6d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
pytest:
1111
needs: [lint]
12-
runs-on: ubuntu-20.0.4
12+
runs-on: ubuntu-22.04.5
1313
strategy:
1414
matrix:
1515
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
@@ -27,7 +27,7 @@ jobs:
2727
run: tox
2828

2929
lint:
30-
runs-on: ubuntu-20.0.4
30+
runs-on: ubuntu-22.04.5
3131
steps:
3232
- uses: actions/checkout@v2
3333
- name: Set up Python 3.10
@@ -45,7 +45,7 @@ jobs:
4545
testpypi-package:
4646
if: github.event_name == 'release' && github.event.release.prerelease == true
4747
needs: [pytest]
48-
runs-on: ubuntu-20.0.4
48+
runs-on: ubuntu-22.04.5
4949
steps:
5050
- uses: actions/checkout@v2
5151
- name: Set up Python 3.10
@@ -75,7 +75,7 @@ jobs:
7575
pypi-package:
7676
if: github.event_name == 'release' && github.event.release.prerelease == false
7777
needs: [pytest]
78-
runs-on: ubuntu-20.0.4
78+
runs-on: ubuntu-22.04.5
7979
steps:
8080
- uses: actions/checkout@v2
8181
- name: Set up Python 3.10

0 commit comments

Comments
 (0)