-
Notifications
You must be signed in to change notification settings - Fork 12
build: updated ubuntu version to latest #207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -28,7 +28,7 @@ jobs: | |||||
| strategy: | ||||||
| matrix: | ||||||
| os: | ||||||
| - ubuntu-24.04 | ||||||
| - ubuntu-latest | ||||||
|
||||||
| - ubuntu-latest | |
| - ubuntu-24.04 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -12,28 +12,28 @@ | |||||
| jobs: | ||||||
|
|
||||||
| run_ci: | ||||||
| runs-on: ubuntu-24.04 | ||||||
| runs-on: ubuntu-latest | ||||||
|
||||||
| runs-on: ubuntu-latest | |
| runs-on: ubuntu-24.04 |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using 'ubuntu-latest' instead of a pinned version like 'ubuntu-24.04' can lead to non-reproducible CI builds. When GitHub updates the 'ubuntu-latest' tag to a newer Ubuntu version, workflows may behave differently or break unexpectedly without any code changes. Consider using a specific Ubuntu version for more predictable and reproducible CI builds. If you need to use the latest version, consider documenting the reason and having a process to validate workflows when ubuntu-latest is updated by GitHub.