Skip to content

Commit f0a8868

Browse files
committed
ci: Stop using ubuntu-latest
This generates a bunch of warnings in CI ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see actions/runner-images#10636 Update to ubuntu 24.04 to catch any possible issues and stop using ubuntu-latest. Signed-off-by: Lucas De Marchi <[email protected]>
1 parent 21cced7 commit f0a8868

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/clang-format.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
stylecheck:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1515
- run: git fetch --depth=1 origin ${{ github.event.pull_request.base.sha }}

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permissions:
1919
jobs:
2020
analyze:
2121
name: Analyze
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-24.04
2323
permissions:
2424
actions: read
2525
security-events: write

.github/workflows/codespell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
spellcheck:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2121
- uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2.1

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permissions:
1919
jobs:
2020
analyze:
2121
name: Analyze
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-24.04
2323
strategy:
2424
fail-fast: false
2525
matrix:

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
build:
2121
env:
2222
CC: ${{ matrix.compiler }}
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-24.04
2424
strategy:
2525
fail-fast: false
2626
matrix:

0 commit comments

Comments
 (0)