From af8482c31f72e58224e7bda2e7114b4b61f9f636 Mon Sep 17 00:00:00 2001 From: "Doroszlai, Attila" <6454655+adoroszlai@users.noreply.github.com> Date: Tue, 11 Feb 2025 08:04:26 +0100 Subject: [PATCH] RATIS-2247. Bump GitHub Actions runner to ubuntu-24.04 (#1219) --- .github/workflows/check.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/repeat-test.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 78a4be2ad3..be5718f7ef 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -55,7 +55,7 @@ on: runner: type: string description: "GitHub Actions runner to use" - default: 'ubuntu-20.04' + default: 'ubuntu-24.04' required: false script-args: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11fb1bd515..986bc7128c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,7 +96,7 @@ jobs: needs: - build - unit - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 timeout-minutes: 30 if: (github.repository == 'apache/ratis' || github.repository == 'apache/incubator-ratis') && github.event_name != 'pull_request' steps: diff --git a/.github/workflows/repeat-test.yml b/.github/workflows/repeat-test.yml index f431b1a0fe..66fec90f16 100644 --- a/.github/workflows/repeat-test.yml +++ b/.github/workflows/repeat-test.yml @@ -50,7 +50,7 @@ env: run-name: ${{ github.event_name == 'workflow_dispatch' && format('{0}#{1}[{2}]-{3}x{4}', inputs.test-class, inputs.test-method, inputs.ref, inputs.splits, inputs.iterations) || '' }} jobs: prepare: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 outputs: matrix: ${{ steps.generate.outputs.matrix }} test-spec: ${{ steps.test-spec.outputs.test-spec }} @@ -79,7 +79,7 @@ jobs: if: ${{ always() }} needs: - prepare - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 env: TEST_SPEC: ${{ needs.prepare.outputs.test-spec }} strategy: @@ -121,7 +121,7 @@ jobs: count-failures: if: ${{ failure() }} needs: test - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - name: Download build results uses: actions/download-artifact@v4