From 467b08ba36533e8975aaa24d4504b72a2eedb0e1 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Tue, 11 Feb 2025 23:41:34 +0200 Subject: [PATCH] [ci] Update Ubuntu 20.04 images to 24.04 GitHub actions will start failing jobs using Ubuntu 20.04 images, so switch to 24.04. Switch also on CircleCI while at it. --- .circleci/config.yml | 4 ++-- .github/workflows/configs-build.yml | 2 +- .github/workflows/linux-ci.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cbfea656b..e7d69f4ec 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -89,7 +89,7 @@ jobs: tsan: docker: - - image: ubuntu:20.04 + - image: ubuntu:24.04 steps: - checkout - run: apt update || true @@ -104,7 +104,7 @@ jobs: msan: docker: - - image: ubuntu:20.04 + - image: ubuntu:24.04 steps: - checkout - run: apt update || true diff --git a/.github/workflows/configs-build.yml b/.github/workflows/configs-build.yml index 1c9bea353..f420e5735 100644 --- a/.github/workflows/configs-build.yml +++ b/.github/workflows/configs-build.yml @@ -11,7 +11,7 @@ permissions: jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml index 6b667e1f4..30ba6c5e4 100644 --- a/.github/workflows/linux-ci.yml +++ b/.github/workflows/linux-ci.yml @@ -12,7 +12,7 @@ permissions: jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - name: Checkout