From 0ab1a634616029d5fe7e4b44e63c9990040932b5 Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Wed, 8 Jun 2022 20:12:22 +0200 Subject: [PATCH] github/workflows: port all workflows to Ubuntu 22.04 So we have a new enough meson version everywhere. Signed-off-by: Christian Brauner (Microsoft) --- .github/workflows/coverity.yml | 2 +- .github/workflows/sanitizers.yml | 2 +- .github/workflows/static-analysis.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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