This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis.git
The following commit(s) were added to refs/heads/master by this push:
new af8482c31 RATIS-2247. Bump GitHub Actions runner to ubuntu-24.04
(#1219)
af8482c31 is described below
commit af8482c31f72e58224e7bda2e7114b4b61f9f636
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Tue Feb 11 08:04:26 2025 +0100
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 78a4be2ad..be5718f7e 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 11fb1bd51..986bc7128 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 f431b1a0f..66fec90f1 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