Skip to content

Commit

Permalink
ci: update to ubuntu 22.04 as 20.04 will be removed in April
Browse files Browse the repository at this point in the history
The 20.04 image will be removed from Github Actions, see actions/runner-images#11101

This means that Seamly also requires at least Ubuntu 22.04 or equvalent

Signed-off-by: Christoph Settgast <[email protected]>
  • Loading branch information
csett86 authored and DSCaskey committed Feb 15, 2025
1 parent 5dd7736 commit 4fd3567
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
linux:
name: 'Linux: Build AppImage'
runs-on: ubuntu-20.04 # build on the oldest supported LTS so that resulting binaries are compatible with older and newer Linux releases
runs-on: ubuntu-22.04 # build on the oldest supported LTS so that resulting binaries are compatible with older and newer Linux releases
needs: version
env:
VERSION_NUMBER: ${{ needs.version.outputs.version_number }}
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
linux-test:
if: github.event_name == 'pull_request'
name: 'Linux: Run unit tests'
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 4fd3567

Please sign in to comment.