From d281259b0856ba17973e4ddcc0bd513471e2cdca Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Thu, 9 May 2024 23:00:34 -0400 Subject: [PATCH] GitHub Actions: update Ubuntu version 20.04 is deprecated, update to 22.04 --- .github/workflows/ci_backend.yml | 2 +- .github/workflows/ci_codestyle.yml | 2 +- .github/workflows/ci_learn_update_paylists.yml | 4 ++-- .github/workflows/ci_linux_mu4.yml | 2 +- .github/workflows/ci_lupdate.yml | 2 +- .github/workflows/ci_release.yml | 2 +- .github/workflows/ci_release_clear.yml | 2 +- .github/workflows/ci_utests.yml | 2 +- .github/workflows/ci_vtests.yml | 8 ++++---- .github/workflows/ci_withoutqt.yml | 2 +- 10 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci_backend.yml b/.github/workflows/ci_backend.yml index cd5b377b6aded..b497fc991de2c 100644 --- a/.github/workflows/ci_backend.yml +++ b/.github/workflows/ci_backend.yml @@ -17,7 +17,7 @@ on: jobs: build_mu4: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Cancel Previous Runs uses: styfle/cancel-workflow-action@0.12.1 diff --git a/.github/workflows/ci_codestyle.yml b/.github/workflows/ci_codestyle.yml index 0f89aa52a0cf9..d2c9c8d8d4276 100644 --- a/.github/workflows/ci_codestyle.yml +++ b/.github/workflows/ci_codestyle.yml @@ -7,7 +7,7 @@ on: jobs: codestyle: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Clone repository uses: actions/checkout@v4 diff --git a/.github/workflows/ci_learn_update_paylists.yml b/.github/workflows/ci_learn_update_paylists.yml index aaa9c355a1b02..8ebb74e6bcac5 100644 --- a/.github/workflows/ci_learn_update_paylists.yml +++ b/.github/workflows/ci_learn_update_paylists.yml @@ -14,7 +14,7 @@ defaults: jobs: update-get-started-playlist: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Clone repository uses: actions/checkout@v4 @@ -37,7 +37,7 @@ jobs: --file_name "playlist.json" update-advanced-playlist: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Clone repository uses: actions/checkout@v4 diff --git a/.github/workflows/ci_linux_mu4.yml b/.github/workflows/ci_linux_mu4.yml index 76c134fbf6753..2966ca7f304cb 100644 --- a/.github/workflows/ci_linux_mu4.yml +++ b/.github/workflows/ci_linux_mu4.yml @@ -28,7 +28,7 @@ env: jobs: build_mu4: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Cancel Previous Runs uses: styfle/cancel-workflow-action@0.12.1 diff --git a/.github/workflows/ci_lupdate.yml b/.github/workflows/ci_lupdate.yml index 13b3fc5906d4c..dbc48499ff62f 100644 --- a/.github/workflows/ci_lupdate.yml +++ b/.github/workflows/ci_lupdate.yml @@ -13,7 +13,7 @@ on: jobs: lupdate: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 if: github.event_name != 'schedule' || github.repository == 'musescore/MuseScore' steps: - name: Clone repository diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index bc0d3bbd8cb82..d23d0b31be5a9 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -17,7 +17,7 @@ defaults: jobs: update-release-info: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Clone repository uses: actions/checkout@v4 diff --git a/.github/workflows/ci_release_clear.yml b/.github/workflows/ci_release_clear.yml index 4081db1142cd1..a1be4359a5176 100644 --- a/.github/workflows/ci_release_clear.yml +++ b/.github/workflows/ci_release_clear.yml @@ -14,7 +14,7 @@ defaults: jobs: update-release-clear: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Clone repository uses: actions/checkout@v4 diff --git a/.github/workflows/ci_utests.yml b/.github/workflows/ci_utests.yml index fc7b4f7da6644..aa580d58d6c5b 100644 --- a/.github/workflows/ci_utests.yml +++ b/.github/workflows/ci_utests.yml @@ -8,7 +8,7 @@ on: jobs: run_tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Cancel Previous Runs uses: styfle/cancel-workflow-action@0.12.1 diff --git a/.github/workflows/ci_vtests.yml b/.github/workflows/ci_vtests.yml index 4f94eebe250b6..7fdb28944ebf3 100644 --- a/.github/workflows/ci_vtests.yml +++ b/.github/workflows/ci_vtests.yml @@ -8,7 +8,7 @@ on: jobs: setup: name: "Setup VTests workflow" - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 outputs: do_run: ${{ steps.output_data.outputs.do_run }} reference_sha: ${{ steps.output_data.outputs.reference_sha }} @@ -61,7 +61,7 @@ jobs: build_current: name: "Build current" - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: setup if: needs.setup.outputs.do_run == 'true' # Can't use env: see https://github.com/actions/runner/issues/480 steps: @@ -90,7 +90,7 @@ jobs: build_reference: name: "Build reference" - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: setup if: needs.setup.outputs.do_run == 'true' steps: @@ -121,7 +121,7 @@ jobs: generate_and_compare: name: "Generate and Compare" - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: [setup, build_current, build_reference] if: needs.setup.outputs.do_run == 'true' steps: diff --git a/.github/workflows/ci_withoutqt.yml b/.github/workflows/ci_withoutqt.yml index 205a46b6acab6..f4d36a008a7e9 100644 --- a/.github/workflows/ci_withoutqt.yml +++ b/.github/workflows/ci_withoutqt.yml @@ -7,7 +7,7 @@ on: jobs: run_tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Cancel Previous Runs uses: styfle/cancel-workflow-action@0.12.1