From e4dd393e085420ddc02ad0b53dc963f24aaa8051 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Sat, 16 Dec 2023 23:52:43 +0900 Subject: [PATCH] GH-39246: [CI][GLib][Ruby] Use Ubuntu 22.04 not 20.04 (#39247) ### Rationale for this change Ubuntu 20.04 ships Ruby 2.7 but it reached EOL. Bundler 2.5.0 or later requires Ruby 3.0 or later. ### What changes are included in this PR? Use Ubuntu 22.04 that ships Ruby 3.0. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: #39246 Authored-by: Sutou Kouhei Signed-off-by: Sutou Kouhei --- .github/workflows/ruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 25edec62e06eb..be30865ac7ac6 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -66,7 +66,7 @@ jobs: fail-fast: false matrix: ubuntu: - - 20.04 + - 22.04 env: UBUNTU: ${{ matrix.ubuntu }} steps: