Skip to content

Commit 9a5f20d

Browse files
authored
Merge pull request #311 from jvanderaa/u/jvanderaa_310_ubuntu_version
Update to Ubuntu 24.04
2 parents 12b3e6f + 14837a0 commit 9a5f20d

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:
@@ -118,7 +118,7 @@ jobs:
118118
include:
119119
- python-version: "3.11"
120120
pydantic: "1.x"
121-
runs-on: "ubuntu-20.04"
121+
runs-on: "ubuntu-24.04"
122122
env:
123123
INVOKE_LOCAL: "True"
124124
PYTHON_VER: "${{ matrix.python-version }}"
@@ -141,7 +141,7 @@ jobs:
141141
- "pylint"
142142
publish_gh:
143143
name: "Publish to GitHub"
144-
runs-on: "ubuntu-20.04"
144+
runs-on: "ubuntu-24.04"
145145
if: "startsWith(github.ref, 'refs/tags/v')"
146146
steps:
147147
- name: "Check out repository code"
@@ -170,7 +170,7 @@ jobs:
170170
- "unittest"
171171
publish_pypi:
172172
name: "Push Package to PyPI"
173-
runs-on: "ubuntu-20.04"
173+
runs-on: "ubuntu-24.04"
174174
if: "startsWith(github.ref, 'refs/tags/v')"
175175
steps:
176176
- name: "Check out repository code"
@@ -199,7 +199,7 @@ jobs:
199199
- "publish_gh"
200200
- "publish_pypi"
201201
name: "Send notification to the Slack"
202-
runs-on: "ubuntu-20.04"
202+
runs-on: "ubuntu-24.04"
203203
env:
204204
SLACK_WEBHOOK_URL: "${{ secrets.SLACK_WEBHOOK_URL }}"
205205
SLACK_MESSAGE: >-

0 commit comments

Comments
 (0)