Skip to content

Commit 720b1fd

Browse files
authored
GitHub Actions: Upgrade GitHub Runner Image from ubuntu-22.04 to ubuntu-latest (#1213)
1 parent 9da9610 commit 720b1fd

17 files changed

+24
-24
lines changed

.github/workflows/android_beta_deployment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
needs: files-changed
2323
if: ${{ needs.files-changed.outputs.android == 'true' || needs.files-changed.outputs.shared == 'true' }}
2424
name: Gradle Wrapper Validation
25-
runs-on: ubuntu-22.04
25+
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout
2828
uses: actions/[email protected]
@@ -41,7 +41,7 @@ jobs:
4141
google-play-deployment:
4242
name: Deploy to Google Play
4343
needs: gradle-wrapper-validation
44-
runs-on: ubuntu-22.04
44+
runs-on: ubuntu-latest
4545
environment: android_production
4646
timeout-minutes: 60
4747

.github/workflows/android_deploy_to_firebase.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
deploy:
8-
runs-on: ubuntu-22.04
8+
runs-on: ubuntu-latest
99
environment: android_production
1010
timeout-minutes: 30
1111

.github/workflows/android_deploy_to_firebase_manually.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# Run Gradle Wrapper Validation Action to verify the wrapper's checksum
1212
gradle-wrapper-validation:
1313
name: Gradle Wrapper Validation
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
1717
uses: actions/[email protected]

.github/workflows/android_release_deployment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
gradle-wrapper-validation:
2222
# if: ${{ github.ref == 'refs/heads/main' }}
2323
name: Gradle Wrapper Validation
24-
runs-on: ubuntu-22.04
24+
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout
2727
uses: actions/[email protected]
@@ -33,7 +33,7 @@ jobs:
3333
deployment:
3434
name: Android Release Deployment
3535
needs: gradle-wrapper-validation
36-
runs-on: ubuntu-22.04
36+
runs-on: ubuntu-latest
3737
environment: android_production
3838
timeout-minutes: 60
3939

.github/workflows/auto_author_assign.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
assign-author:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-latest
1313
if: ${{ !github.event.pull_request.assignee }}
1414
steps:
1515
- uses: toshimaru/[email protected]

.github/workflows/build_caches.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
needs: files-changed
2929
if: ${{ github.event_name == 'workflow_dispatch' || needs.files-changed.outputs.android == 'true' }}
3030
name: Build Android Caches
31-
runs-on: ubuntu-22.04
31+
runs-on: ubuntu-latest
3232
timeout-minutes: 60
3333

3434
steps:

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ defaults:
3737
jobs:
3838
gradle-wrapper-validation:
3939
name: Gradle Wrapper Validation
40-
runs-on: ubuntu-22.04
40+
runs-on: ubuntu-latest
4141
timeout-minutes: 5
4242
steps:
4343
- name: Checkout
@@ -59,7 +59,7 @@ jobs:
5959
needs: files-changed
6060
if: ${{ needs.files-changed.outputs.android == 'true' || needs.files-changed.outputs.shared == 'true' }}
6161
name: Run ktlint
62-
runs-on: ubuntu-22.04
62+
runs-on: ubuntu-latest
6363
timeout-minutes: 10
6464

6565
steps:
@@ -86,7 +86,7 @@ jobs:
8686
needs: files-changed
8787
if: ${{ needs.files-changed.outputs.android == 'true' || needs.files-changed.outputs.shared == 'true' }}
8888
name: Run detekt
89-
runs-on: ubuntu-22.04
89+
runs-on: ubuntu-latest
9090
timeout-minutes: 10
9191

9292
steps:
@@ -146,7 +146,7 @@ jobs:
146146
needs: [files-changed, ktlint, detekt]
147147
if: ${{ needs.files-changed.outputs.shared == 'true' }}
148148
name: Run shared unit tests
149-
runs-on: ubuntu-22.04
149+
runs-on: ubuntu-latest
150150
timeout-minutes: 30
151151

152152
steps:
@@ -170,7 +170,7 @@ jobs:
170170
needs: [files-changed, ktlint, detekt]
171171
if: ${{ needs.files-changed.outputs.android == 'true' || needs.files-changed.outputs.shared == 'true' }}
172172
name: Run Android unit tests
173-
runs-on: ubuntu-22.04
173+
runs-on: ubuntu-latest
174174
timeout-minutes: 30
175175

176176
steps:

.github/workflows/cleanup_pr_caches.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
cleanup:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-latest
1212

1313
steps:
1414
- name: Checkout

.github/workflows/detect_changed_files_reusable_workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ on:
4141

4242
jobs:
4343
files-changed:
44-
runs-on: ubuntu-22.04
44+
runs-on: ubuntu-latest
4545
timeout-minutes: 5
4646
# Map a step output to a job output
4747
outputs:

.github/workflows/gh_pages_analytics.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
build:
3333
needs: files-changed
3434
if: ${{ inputs.force_build || needs.files-changed.outputs.analytic == 'true' }}
35-
runs-on: ubuntu-22.04
35+
runs-on: ubuntu-latest
3636
timeout-minutes: 10
3737

3838
steps:
@@ -59,7 +59,7 @@ jobs:
5959

6060
deploy:
6161
needs: build
62-
runs-on: ubuntu-22.04
62+
runs-on: ubuntu-latest
6363
timeout-minutes: 10
6464

6565
environment:

.github/workflows/gpt_review.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
code-review:
1717
if: ${{ contains(github.event.*.labels.*.name, 'gpt-review') }}
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-latest
1919
timeout-minutes: 5
2020
steps:
2121
- uses: anc95/ChatGPT-CodeReview@main

.github/workflows/greetings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [pull_request_target, issues]
44

55
jobs:
66
greeting:
7-
runs-on: ubuntu-22.04
7+
runs-on: ubuntu-latest
88
permissions:
99
issues: write
1010
pull-requests: write

.github/workflows/ios_beta_deployment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
needs: files-changed
2323
if: ${{ needs.files-changed.outputs.ios == 'true' || needs.files-changed.outputs.shared == 'true' }}
2424
name: Gradle Wrapper Validation
25-
runs-on: ubuntu-22.04
25+
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout
2828
uses: actions/[email protected]

.github/workflows/ios_release_deployment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# Run Gradle Wrapper Validation Action to verify the wrapper's checksum
1919
gradle-wrapper-validation:
2020
name: Gradle Wrapper Validation
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout
2424
uses: actions/[email protected]

.github/workflows/label.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [pull_request]
44

55
jobs:
66
label:
7-
runs-on: ubuntu-22.04
7+
runs-on: ubuntu-latest
88
permissions:
99
pull-requests: write
1010
steps:

.github/workflows/merge_main_into_develop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defaults:
1919
jobs:
2020
merge:
2121
name: Git Merge
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
2525
uses: actions/[email protected]

.github/workflows/stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
stale:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-latest
1111
permissions:
1212
issues: write
1313
pull-requests: write

0 commit comments

Comments
 (0)