Skip to content

Commit

Permalink
GitHub Actions: update Ubuntu version
Browse files Browse the repository at this point in the history
20.04 is deprecated, update to 22.04
  • Loading branch information
theofficialgman committed May 19, 2024
1 parent 1c9efdd commit d281259
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_codestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_learn_update_paylists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_linux_mu4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_lupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_release_clear.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_utests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci_vtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_withoutqt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d281259

Please sign in to comment.