Skip to content

Commit ea48fe2

Browse files
committed
Update to Ubuntu 24.04
1 parent c663a9b commit ea48fe2

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on: # yamllint disable
1313
pull_request: ~
1414
jobs:
1515
black:
16-
runs-on: "ubuntu-20.04"
16+
runs-on: "ubuntu-24.04"
1717
env:
1818
INVOKE_LOCAL: "True"
1919
steps:
@@ -24,7 +24,7 @@ jobs:
2424
- name: "Linting: black"
2525
run: "poetry run invoke black"
2626
bandit:
27-
runs-on: "ubuntu-20.04"
27+
runs-on: "ubuntu-24.04"
2828
env:
2929
INVOKE_LOCAL: "True"
3030
steps:
@@ -37,7 +37,7 @@ jobs:
3737
needs:
3838
- "black"
3939
pydocstyle:
40-
runs-on: "ubuntu-20.04"
40+
runs-on: "ubuntu-24.04"
4141
env:
4242
INVOKE_LOCAL: "True"
4343
steps:
@@ -50,7 +50,7 @@ jobs:
5050
needs:
5151
- "black"
5252
flake8:
53-
runs-on: "ubuntu-20.04"
53+
runs-on: "ubuntu-24.04"
5454
env:
5555
INVOKE_LOCAL: "True"
5656
steps:
@@ -63,7 +63,7 @@ jobs:
6363
needs:
6464
- "black"
6565
mypy:
66-
runs-on: "ubuntu-20.04"
66+
runs-on: "ubuntu-24.04"
6767
env:
6868
INVOKE_LOCAL: "True"
6969
steps:
@@ -78,7 +78,7 @@ jobs:
7878
needs:
7979
- "black"
8080
yamllint:
81-
runs-on: "ubuntu-20.04"
81+
runs-on: "ubuntu-24.04"
8282
env:
8383
INVOKE_LOCAL: "True"
8484
steps:
@@ -91,7 +91,7 @@ jobs:
9191
needs:
9292
- "black"
9393
pylint:
94-
runs-on: "ubuntu-20.04"
94+
runs-on: "ubuntu-24.04"
9595
env:
9696
INVOKE_LOCAL: "True"
9797
steps:
@@ -114,7 +114,7 @@ jobs:
114114
fail-fast: true
115115
matrix:
116116
python-version: ["3.8", "3.9", "3.10", "3.11"]
117-
runs-on: "ubuntu-20.04"
117+
runs-on: "ubuntu-24.04"
118118
env:
119119
INVOKE_LOCAL: "True"
120120
PYTHON_VER: "${{ matrix.python-version }}"
@@ -134,7 +134,7 @@ jobs:
134134
- "pylint"
135135
publish_gh:
136136
name: "Publish to GitHub"
137-
runs-on: "ubuntu-20.04"
137+
runs-on: "ubuntu-24.04"
138138
if: "startsWith(github.ref, 'refs/tags/v')"
139139
steps:
140140
- name: "Check out repository code"
@@ -163,7 +163,7 @@ jobs:
163163
- "unittest"
164164
publish_pypi:
165165
name: "Push Package to PyPI"
166-
runs-on: "ubuntu-20.04"
166+
runs-on: "ubuntu-24.04"
167167
if: "startsWith(github.ref, 'refs/tags/v')"
168168
steps:
169169
- name: "Check out repository code"
@@ -192,7 +192,7 @@ jobs:
192192
- "publish_gh"
193193
- "publish_pypi"
194194
name: "Send notification to the Slack"
195-
runs-on: "ubuntu-20.04"
195+
runs-on: "ubuntu-24.04"
196196
env:
197197
SLACK_WEBHOOK_URL: "${{ secrets.SLACK_WEBHOOK_URL }}"
198198
SLACK_MESSAGE: >-

0 commit comments

Comments
 (0)