Skip to content

Commit ba17b84

Browse files
authored
Update to Ubuntu 24.04 (#325)
1 parent 4e48b44 commit ba17b84

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717

1818
jobs:
1919
black:
20-
runs-on: "ubuntu-20.04"
20+
runs-on: "ubuntu-24.04"
2121
env:
2222
INVOKE_LOCAL: "True"
2323
steps:
@@ -28,7 +28,7 @@ jobs:
2828
- name: "Linting: black"
2929
run: "poetry run invoke black"
3030
bandit:
31-
runs-on: "ubuntu-20.04"
31+
runs-on: "ubuntu-24.04"
3232
env:
3333
INVOKE_LOCAL: "True"
3434
steps:
@@ -41,7 +41,7 @@ jobs:
4141
needs:
4242
- "black"
4343
pydocstyle:
44-
runs-on: "ubuntu-20.04"
44+
runs-on: "ubuntu-24.04"
4545
env:
4646
INVOKE_LOCAL: "True"
4747
steps:
@@ -54,7 +54,7 @@ jobs:
5454
needs:
5555
- "black"
5656
flake8:
57-
runs-on: "ubuntu-20.04"
57+
runs-on: "ubuntu-24.04"
5858
env:
5959
INVOKE_LOCAL: "True"
6060
steps:
@@ -67,7 +67,7 @@ jobs:
6767
needs:
6868
- "black"
6969
yamllint:
70-
runs-on: "ubuntu-20.04"
70+
runs-on: "ubuntu-24.04"
7171
env:
7272
INVOKE_LOCAL: "True"
7373
steps:
@@ -84,7 +84,7 @@ jobs:
8484
fail-fast: true
8585
matrix:
8686
python-version: ["3.8", "3.11"]
87-
runs-on: "ubuntu-20.04"
87+
runs-on: "ubuntu-24.04"
8888
env:
8989
PYTHON_VER: "${{ matrix.python-version }}"
9090
steps:
@@ -115,7 +115,7 @@ jobs:
115115
- "flake8"
116116
- "yamllint"
117117
pylint:
118-
runs-on: "ubuntu-20.04"
118+
runs-on: "ubuntu-24.04"
119119
strategy:
120120
fail-fast: true
121121
matrix:
@@ -156,7 +156,7 @@ jobs:
156156
fail-fast: true
157157
matrix:
158158
python-version: ["3.8", "3.11"]
159-
runs-on: "ubuntu-20.04"
159+
runs-on: "ubuntu-24.04"
160160
env:
161161
PYTHON_VER: "${{ matrix.python-version }}"
162162
steps:
@@ -194,7 +194,7 @@ jobs:
194194
- "yamllint"
195195
publish_gh:
196196
name: "Publish to GitHub"
197-
runs-on: "ubuntu-20.04"
197+
runs-on: "ubuntu-24.04"
198198
if: "startsWith(github.ref, 'refs/tags/v')"
199199
steps:
200200
- name: "Check out repository code"
@@ -223,7 +223,7 @@ jobs:
223223
- "pytest"
224224
publish_pypi:
225225
name: "Push Package to PyPI"
226-
runs-on: "ubuntu-20.04"
226+
runs-on: "ubuntu-24.04"
227227
if: "startsWith(github.ref, 'refs/tags/v')"
228228
steps:
229229
- name: "Check out repository code"

0 commit comments

Comments
 (0)