Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ concurrency:
jobs:
code_formatting:
name: Code Formatting
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- name: Checkout repository
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
code_formatting:
name: Code Formatting
runs-on: ubuntu-20.04 #https://github.com/actions/runner-images/issues/6709
runs-on: ubuntu-24.04 #https://github.com/actions/runner-images/issues/6709

steps:
- name: Checkout repository
Expand All @@ -34,7 +34,7 @@ jobs:

unit_tests:
name: Unit tests
runs-on: ubuntu-20.04 #https://github.com/actions/runner-images/issues/6709
runs-on: ubuntu-24.04 #https://github.com/actions/runner-images/issues/6709

steps:
- name: Checkout repository
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:

lint:
name: Lint
runs-on: ubuntu-20.04 #https://github.com/actions/runner-images/issues/6709
runs-on: ubuntu-24.04 #https://github.com/actions/runner-images/issues/6709

steps:
- name: Checkout repository
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
path: lint-report.zip

android_tests:
runs-on: ubuntu-20.04 #https://github.com/actions/runner-images/issues/6709
runs-on: ubuntu-24.04 #https://github.com/actions/runner-images/issues/6709
name: Android CI checks

steps:
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:

create_task_when_failed:
name: Create Asana task when workflow failed
runs-on: ubuntu-20.04 #https://github.com/actions/runner-images/issues/6709
runs-on: ubuntu-24.04 #https://github.com/actions/runner-images/issues/6709
needs: [code_formatting, unit_tests, lint, android_tests]
if: ${{ failure() }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_report_error.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
report-release-error:
name: Create Asana Task
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- name: Create Asana task when workflow failed
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:
jobs:
run-release-tests:
name: Run Release tests of tag version in Maestro
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- name: Checkout repository
Expand Down
Loading