ci: run GitHub Actions jobs on ubuntu-24.04 - #87
Merged
Merged
Conversation
ubuntu-22.04 hosted runners are deprecated (brownouts started 2026-09-17).
nabil-kpler
approved these changes
Sep 17, 2026
leo-dur
approved these changes
Sep 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 AI-generated: this pull request was written by Claude Code acting on behalf of @thepoppingone, not by them directly.
What
Switches every GitHub Actions runner reference in this repository from
ubuntu-22.04toubuntu-24.04..github/workflows/bump-version.yml(1 line).github/workflows/test.yml(2 lines)Why
GitHub started brownouts of the
ubuntu-22.04hosted runner image on 2026-09-17; the label isdeprecated and jobs pinned to it will fail once retirement completes.
ubuntu-24.04is already theorg standard —
Kpler/github-actionsships a Checkov rule (ban_ubuntu_2204) that flags the oldlabel, and the shared workflows default to 24.04.
Beyond the deprecation, 24.04 ships newer defaults (Java 17, Python 3.12) that several org-wide CI
jobs already depend on.
Risk
Low, but not zero: 24.04 ships different default tool versions than 22.04 (Java 11 → 17,
Python 3.10 → 3.12, newer glibc/OpenSSL). Jobs that relied on an implicit 22.04 default may need an
explicit
setup-*step. CI on this PR is the check — if it is green, the runner swap is safe.Part of an org-wide sweep of
ubuntu-22.04references.