Skip to content

Commit 0c26a0e

Browse files
Use explicit ubuntu version instead of ubuntu-latest (#1078)
`ubuntu-latest` is an alias/pointer which over time changes and points at newer ubuntu images. Different ubuntu images have different compiler versions installed and newer images drop older compiler versions. So to keep the CI builds running successfully it's better to use explicit version requirements. Signed-off-by: Neil Henderson <[email protected]>
1 parent d3ad31a commit 0c26a0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/regression-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
os: [ubuntu-latest]
22+
os: [ubuntu-22.04]
2323
compiler: [g++-10, clang++-15]
2424
include:
2525
- os: ubuntu-24.04

0 commit comments

Comments
 (0)