From: Christian Brauner Date: Wed, 8 Jun 2022 18:12:22 +0000 (+0200) Subject: github/workflows: port all workflows to Ubuntu 22.04 X-Git-Tag: lxc-5.0.0~7^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0ab1a634616029d5fe7e4b44e63c9990040932b5;p=thirdparty%2Flxc.git github/workflows: port all workflows to Ubuntu 22.04 So we have a new enough meson version everywhere. Signed-off-by: Christian Brauner (Microsoft) --- diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 370c09428..5713c588c 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -5,7 +5,7 @@ on: - master jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout code uses: actions/checkout@v2 diff --git a/.github/workflows/sanitizers.yml b/.github/workflows/sanitizers.yml index 76339e19c..15849635f 100644 --- a/.github/workflows/sanitizers.yml +++ b/.github/workflows/sanitizers.yml @@ -10,7 +10,7 @@ jobs: compiler: - gcc - clang - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout code uses: actions/checkout@v2 diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 0317559ad..943b2de0d 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -4,7 +4,7 @@ on: - pull_request jobs: test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Checkout code uses: actions/checkout@v2