From 711f9f2df861e0c800695dbeccb6afd97c51bccd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Rodr=C3=ADguez=20Ponce?= Date: Thu, 13 Feb 2025 13:02:23 +0100 Subject: [PATCH] Update Github Actions runner images (#8660) Ubuntu 20.04 will become unsupported on 2025-04. Update the images used in the Github Actions runners to one supported. https://github.com/actions/runner-images/issues/11101 --- .github/workflows/backport.yml | 2 +- .github/workflows/linux.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 272cd05d974f..311b32e431a3 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -14,7 +14,7 @@ jobs: contents: write pull-requests: write issues: write - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest name: Backport steps: - name: Backport Bot diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 4d1d6d27eb1a..19a152e367c0 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: include: - - os: ubuntu-22.04 + - os: ubuntu-24.04 jdk: 11 steps: - uses: actions/checkout@v4 @@ -46,7 +46,7 @@ jobs: find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {} QA: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 with: