Skip to content

Commit 68f76e1

Browse files
committed
Upgrade the CI Ubuntu from 20.04 to 24.04
1 parent d47a810 commit 68f76e1

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
linters:
1111
name: Linting and static analysis
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-24.04
1313
timeout-minutes: 5
1414
steps:
1515
- uses: actions/checkout@v4
@@ -26,7 +26,7 @@ jobs:
2626
matrix:
2727
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
2828
name: Python ${{ matrix.python-version }}
29-
runs-on: ubuntu-20.04
29+
runs-on: ubuntu-24.04
3030
timeout-minutes: 5
3131
steps:
3232
- uses: actions/checkout@v4
@@ -61,7 +61,7 @@ jobs:
6161
matrix:
6262
python-version: [ "pypy-3.7", "pypy-3.8" ]
6363
name: Python ${{ matrix.python-version }}
64-
runs-on: ubuntu-20.04
64+
runs-on: ubuntu-24.04
6565
timeout-minutes: 5
6666
steps:
6767
- uses: actions/checkout@v4
@@ -76,7 +76,7 @@ jobs:
7676
coveralls-finish:
7777
name: Finalize coveralls.io
7878
needs: [unit-tests]
79-
runs-on: ubuntu-20.04
79+
runs-on: ubuntu-24.04
8080
steps:
8181
- uses: actions/setup-python@v5
8282
- run: pip install coveralls

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
publish:
1313
name: Build and publish
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-python@v5

.github/workflows/thorough.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
linters:
1313
name: Linting and static analysis
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515
timeout-minutes: 5
1616
steps:
1717
- uses: actions/checkout@v4
@@ -28,7 +28,7 @@ jobs:
2828
matrix:
2929
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
3030
name: Python ${{ matrix.python-version }}
31-
runs-on: ubuntu-20.04
31+
runs-on: ubuntu-24.04
3232
timeout-minutes: 5
3333
steps:
3434
- uses: actions/checkout@v4
@@ -63,7 +63,7 @@ jobs:
6363
matrix:
6464
python-version: [ "pypy-3.7", "pypy-3.8" ]
6565
name: Python ${{ matrix.python-version }}
66-
runs-on: ubuntu-20.04
66+
runs-on: ubuntu-24.04
6767
timeout-minutes: 5
6868
steps:
6969
- uses: actions/checkout@v4
@@ -78,7 +78,7 @@ jobs:
7878
coveralls-finish:
7979
name: Finalize coveralls.io
8080
needs: [unit-tests]
81-
runs-on: ubuntu-20.04
81+
runs-on: ubuntu-24.04
8282
steps:
8383
- uses: actions/setup-python@v5
8484
- run: pip install coveralls

0 commit comments

Comments
 (0)