diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-10-19 16:02:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-19 16:02:06 +0200 |
commit | 27121c9b6d4e15dc09a015df808e94fe3b09a424 (patch) | |
tree | a89a59a83631184a5a1c844dcad69cd1d44594dc | |
parent | 6365220063527735fca0134f0649b97d82525990 (diff) | |
download | FlightCore-27121c9b6d4e15dc09a015df808e94fe3b09a424.tar.gz FlightCore-27121c9b6d4e15dc09a015df808e94fe3b09a424.zip |
chore: Update Ubuntu version in CI (#22)
-rw-r--r-- | .github/workflows/push-test.yml | 6 | ||||
-rw-r--r-- | .github/workflows/release.yml | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index a2007885..c2189421 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: # Ensure version numbers in various places match up ensure-same-version: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - name: install dependencies @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [ubuntu-20.04, windows-latest] + platform: [ubuntu-22.04, windows-latest] runs-on: ${{ matrix.platform }} steps: @@ -34,7 +34,7 @@ jobs: with: toolchain: stable - name: install dependencies (ubuntu only) - if: matrix.platform == 'ubuntu-20.04' + if: matrix.platform == 'ubuntu-22.04' run: | sudo apt-get update sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 48ac5348..f62b4f34 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: jobs: # Ensure version numbers in various places match up ensure-same-version: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - name: install dependencies @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [ubuntu-20.04, windows-latest] + platform: [ubuntu-22.04, windows-latest] runs-on: ${{ matrix.platform }} steps: @@ -35,7 +35,7 @@ jobs: with: toolchain: stable - name: install dependencies (ubuntu only) - if: matrix.platform == 'ubuntu-20.04' + if: matrix.platform == 'ubuntu-22.04' run: | sudo apt-get update sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf @@ -65,7 +65,7 @@ jobs: create-release-file: needs: build - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - uses: actions/download-artifact@v3 |