Skip to content

Commit 836301a

Browse files
authored
Move simple CI jobs to latest Ubuntu version (#1091)
These jobs were previously running on an old version of Ubuntu, the image for which will be deprecated at some point. This PR just bumps them to use a newer version; the jobs aren't interacting with the OS in any meaningful way so this won't be a breaking change.
1 parent 12b8253 commit 836301a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/clang-format-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
jobs:
1212
formatting-check:
1313
name: Formatting Check
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Check that C and C++ code is correctly formatted
@@ -22,7 +22,7 @@ jobs:
2222

2323
shell-check:
2424
name: Shell check
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-24.04
2626
steps:
2727
- uses: actions/checkout@v4
2828
- uses: ludeeus/[email protected]

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
include:
1818
- runner: [self-hosted, linux, normal]
19-
os: ubuntu-20.04
19+
os: ubuntu-24.04
2020
- runner: MacM1
2121
os: self-macos-12
2222
runs-on: ${{ matrix.runner }}

0 commit comments

Comments
 (0)