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/build-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:

jobs:
generate-report:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Setup python
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ permissions: write-all
jobs:
build_desktop:
name: build-linux-unity${{inputs.unity_version}}-CPP${{ inputs.firebase_cpp_sdk_version }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_starter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ env:

jobs:
check_and_prepare:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
platform: ${{ steps.set_outputs.outputs.platform }}
release_label: ${{ steps.set_outputs.outputs.release_label }}
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:

decide_build_branch:
needs: [check_and_prepare,update_versions]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: always()
outputs:
build_branch: ${{ steps.decide_branch.outputs.branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate_swig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ permissions: write-all
jobs:
generate_swig:
name: generate-swig-unity${{inputs.unity_version}}-CPP${{ inputs.firebase_cpp_sdk_version }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ env:

jobs:
check_and_prepare:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
trigger: ${{ steps.set_outputs.outputs.trigger }}
github_ref: ${{ steps.set_outputs.outputs.github_ref }}
Expand Down Expand Up @@ -638,7 +638,7 @@ jobs:
summarize_results:
name: "summarize-results"
needs: [check_and_prepare, build_testapp, playmode_test, integration_test]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: ${{ !cancelled() }}
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -694,7 +694,7 @@ jobs:
attempt_retry:
name: "attempt-retry"
needs: [check_and_prepare, summarize_results]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: ${{ failure() && needs.check_and_prepare.outputs.trigger == 'scheduled_trigger' }}
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ env:
jobs:
package_sdks:
name: package-${{github.event.inputs.release_label}}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
# Trigger the integration_tests workflow.
needs: [package_sdks]
if: (inputs.runIntegrationTests != '0') && !cancelled() && !failure()
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/retry-test-failures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions: write-all
jobs:
check_results_and_retry_if_needed:
name: check-results-and-retry-if-needed
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Get token for firebase-workflow-trigger
uses: tibdex/github-app-token@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
outputs:
new_branch: ${{ steps.decide-output.outputs.new_branch }}
cpp_release_version: ${{ steps.decide_input.outputs.cpp_release_version }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
Expand Down
2 changes: 1 addition & 1 deletion scripts/gha/print_matrix_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# GitHub Runner
WINDOWS_RUNNER = "windows-latest"
MACOS_RUNNER = "macos-13"
LINUX_RUNNER = "ubuntu-20.04"
LINUX_RUNNER = "ubuntu-22.04"

PARAMETERS = {
"integration_tests": {
Expand Down
Loading