GitHub Actions: Upgrade GitHub Runner Image from ubuntu-22.04 to ubuntu-latest #1213
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.
Resolves #1212
Checklist
Before Code Review:
Description
This pull request updates the GitHub Actions workflows to use the latest Ubuntu runner version. The changes ensure that all workflows are running on
ubuntu-latest
instead of the previously specifiedubuntu-22.04
.Updates to GitHub Actions workflows:
.github/workflows/android_beta_deployment.yml
: Updatedruns-on
toubuntu-latest
forGradle Wrapper Validation
andDeploy to Google Play
jobs. [1] [2].github/workflows/android_deploy_to_firebase.yml
: Updatedruns-on
toubuntu-latest
for thedeploy
job..github/workflows/android_deploy_to_firebase_manually.yml
: Updatedruns-on
toubuntu-latest
forGradle Wrapper Validation
job..github/workflows/android_release_deployment.yml
: Updatedruns-on
toubuntu-latest
forGradle Wrapper Validation
andAndroid Release Deployment
jobs. [1] [2].github/workflows/auto_author_assign.yml
: Updatedruns-on
toubuntu-latest
for theassign-author
job..github/workflows/build_caches.yml
: Updatedruns-on
toubuntu-latest
for theBuild Android Caches
job..github/workflows/ci.yml
: Updatedruns-on
toubuntu-latest
for multiple jobs includingGradle Wrapper Validation
,Run ktlint
,Run detekt
,Run shared unit tests
, andRun Android unit tests
. [1] [2] [3] [4] [5].github/workflows/cleanup_pr_caches.yml
: Updatedruns-on
toubuntu-latest
for thecleanup
job..github/workflows/detect_changed_files_reusable_workflow.yml
: Updatedruns-on
toubuntu-latest
for thefiles-changed
job..github/workflows/gh_pages_analytics.yml
: Updatedruns-on
toubuntu-latest
forbuild
anddeploy
jobs. [1] [2].github/workflows/gpt_review.yml
: Updatedruns-on
toubuntu-latest
for thecode-review
job..github/workflows/greetings.yml
: Updatedruns-on
toubuntu-latest
for thegreeting
job..github/workflows/ios_beta_deployment.yml
: Updatedruns-on
toubuntu-latest
forGradle Wrapper Validation
job..github/workflows/ios_release_deployment.yml
: Updatedruns-on
toubuntu-latest
forGradle Wrapper Validation
job..github/workflows/label.yml
: Updatedruns-on
toubuntu-latest
for thelabel
job..github/workflows/merge_main_into_develop.yml
: Updatedruns-on
toubuntu-latest
for themerge
job..github/workflows/stale.yml
: Updatedruns-on
toubuntu-latest
for thestale
job.