Skip to content

Commit d8ac84b

Browse files
authored
Merge pull request #173 from networktocode/u/jvanderaa_172_ubuntu_runner_update
Fix Ubuntu runner version.
2 parents e5d737b + 68db154 commit d8ac84b

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

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

1010
jobs:
1111
black:
12-
runs-on: "ubuntu-20.04"
12+
runs-on: "ubuntu-24.04"
1313
env:
1414
INVOKE_LOCAL: "True"
1515
steps:
@@ -20,7 +20,7 @@ jobs:
2020
- name: "Linting: black"
2121
run: "poetry run invoke black"
2222
bandit:
23-
runs-on: "ubuntu-20.04"
23+
runs-on: "ubuntu-24.04"
2424
env:
2525
INVOKE_LOCAL: "True"
2626
steps:
@@ -33,7 +33,7 @@ jobs:
3333
needs:
3434
- "black"
3535
pydocstyle:
36-
runs-on: "ubuntu-20.04"
36+
runs-on: "ubuntu-24.04"
3737
env:
3838
INVOKE_LOCAL: "True"
3939
steps:
@@ -46,7 +46,7 @@ jobs:
4646
needs:
4747
- "black"
4848
flake8:
49-
runs-on: "ubuntu-20.04"
49+
runs-on: "ubuntu-24.04"
5050
env:
5151
INVOKE_LOCAL: "True"
5252
steps:
@@ -59,7 +59,7 @@ jobs:
5959
needs:
6060
- "black"
6161
yamllint:
62-
runs-on: "ubuntu-20.04"
62+
runs-on: "ubuntu-24.04"
6363
env:
6464
INVOKE_LOCAL: "True"
6565
steps:
@@ -77,7 +77,7 @@ jobs:
7777
matrix:
7878
python-version: ["3.8", "3.9", "3.10", "3.11"]
7979
ansible-core-version: ["2.11.7"]
80-
runs-on: "ubuntu-20.04"
80+
runs-on: "ubuntu-24.04"
8181
env:
8282
PYTHON_VER: "${{ matrix.python-version }}"
8383
ANSIBLE_VER: "${{ matrix.ansible-core-version }}"
@@ -113,7 +113,7 @@ jobs:
113113
- "flake8"
114114
- "yamllint"
115115
pylint:
116-
runs-on: "ubuntu-20.04"
116+
runs-on: "ubuntu-24.04"
117117
strategy:
118118
fail-fast: true
119119
matrix:
@@ -161,7 +161,7 @@ jobs:
161161
matrix:
162162
python-version: ["3.8", "3.9", "3.10", "3.11"]
163163
ansible-core-version: ["2.11.7"]
164-
runs-on: "ubuntu-20.04"
164+
runs-on: "ubuntu-24.04"
165165
env:
166166
PYTHON_VER: "${{ matrix.python-version }}"
167167
ANSIBLE_VER: "${{ matrix.ansible-core-version }}"
@@ -200,7 +200,7 @@ jobs:
200200
- "pylint"
201201
publish_gh:
202202
name: "Publish to GitHub"
203-
runs-on: "ubuntu-20.04"
203+
runs-on: "ubuntu-24.04"
204204
if: "startsWith(github.ref, 'refs/tags/v')"
205205
steps:
206206
- name: "Check out repository code"
@@ -229,7 +229,7 @@ jobs:
229229
- "pytest"
230230
publish_pypi:
231231
name: "Push Package to PyPI"
232-
runs-on: "ubuntu-20.04"
232+
runs-on: "ubuntu-24.04"
233233
if: "startsWith(github.ref, 'refs/tags/v')"
234234
steps:
235235
- name: "Check out repository code"

0 commit comments

Comments
 (0)