From c8a4ee3df8557e0817ea0171d01d3aa87b4e858c Mon Sep 17 00:00:00 2001 From: Carla Martinez Date: Fri, 10 Jan 2025 13:45:15 +0100 Subject: [PATCH] Update GitHub runner to ubuntu-24.04 The ubuntu-20.04 runner image won't be supported anymore, so it should be replaced by a newer more stable version (ubuntu-24.04). Signed-off-by: Carla Martinez --- .github/workflows/gating.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gating.yml b/.github/workflows/gating.yml index df58122a..90793bd2 100644 --- a/.github/workflows/gating.yml +++ b/.github/workflows/gating.yml @@ -12,7 +12,7 @@ env: jobs: audit-and-build: name: Audit and build - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 container: image: fedora:latest @@ -57,7 +57,7 @@ jobs: unit-tests: name: Unit tests needs: audit-and-build - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 @@ -75,7 +75,7 @@ jobs: integration-tests: name: Integration tests needs: audit-and-build - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4