Skip to content

Commit 900b979

Browse files
authored
gha: use ubuntu-24.04 runners (#4437)
1 parent a5d9823 commit 900b979

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Diff for: .github/workflows/redirects.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ name: redirects
1616
jobs:
1717
docs:
1818
environment: release
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-24.04
2020
steps:
2121
- uses: actions/checkout@v4
2222
- uses: actions/setup-python@v5

Diff for: .github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
pypi:
2525
name: Publish to PyPI registry
2626
environment: release
27-
runs-on: ubuntu-22.04
27+
runs-on: ubuntu-24.04
2828
permissions:
2929
id-token: write
3030

Diff for: .github/workflows/tox.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env:
2323
jobs:
2424
prepare:
2525
name: prepare
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-24.04
2727
outputs:
2828
matrix: ${{ steps.generate_matrix.outputs.matrix }}
2929
steps:
@@ -48,7 +48,7 @@ jobs:
4848
py313-devel
4949
platforms: linux,macos
5050
test-action:
51-
runs-on: ubuntu-latest
51+
runs-on: ubuntu-24.04
5252
env:
5353
# This disables the github annotations in the output of ansible-lint action
5454
# which might confuse users.
@@ -75,7 +75,7 @@ jobs:
7575
expected_return_code: "2" # expected to fail because the given argument does not exist in this folder
7676
build:
7777
name: ${{ matrix.name }}
78-
runs-on: ${{ matrix.os || 'ubuntu-22.04' }}
78+
runs-on: ${{ matrix.os || 'ubuntu-24.04' }}
7979
needs:
8080
- prepare
8181
defaults:
@@ -175,7 +175,7 @@ jobs:
175175
# https://github.com/actions/toolkit/issues/193
176176
codeql:
177177
name: codeql
178-
runs-on: ubuntu-latest
178+
runs-on: ubuntu-24.04
179179
permissions:
180180
actions: read
181181
contents: read
@@ -220,7 +220,7 @@ jobs:
220220
- build
221221
- test-action
222222

223-
runs-on: ubuntu-latest
223+
runs-on: ubuntu-24.04
224224

225225
steps:
226226
# checkout needed for codecov action which needs codecov.yml file

Diff for: .readthedocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ mkdocs:
66
configuration: mkdocs.yml
77

88
build:
9-
os: ubuntu-22.04
9+
os: ubuntu-24.04
1010
tools:
1111
python: "3.11"
1212
commands:

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
jobs:
2626
build:
2727
name: Ansible Lint # Naming the build is important to use it as a status check
28-
runs-on: ubuntu-latest
28+
runs-on: ubuntu-24.04
2929
steps:
3030
- uses: actions/checkout@v4
3131
- name: Run ansible-lint

Diff for: docs/installing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ on:
111111
jobs:
112112
build:
113113
name: Ansible Lint # Naming the build is important to use it as a status check
114-
runs-on: ubuntu-latest
114+
runs-on: ubuntu-24.04
115115
steps:
116116
- uses: actions/checkout@v4
117117
- name: Run ansible-lint

0 commit comments

Comments
 (0)