summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2022-11-23 10:43:44 +0900
committerusa <usa@garbagecollect.jp>2022-11-24 11:20:51 +0900
commit7f1163e9a564f88075ce53389165d9aef9593e66 (patch)
treedb743217438123825dc549c93fb37f4ea6b8e894
parent39f6a33e2399d8dfe88ae0a1c5b38843ffea9e71 (diff)
downloadruby-7f1163e9a564f88075ce53389165d9aef9593e66.tar.gz
Use ubuntu-20.04 instead of latest, because Ruby 2.7 didn't support openssl3 on Ubuntu 22.04
-rw-r--r--.github/workflows/check_branch.yml2
-rw-r--r--.github/workflows/mjit.yml2
-rw-r--r--.github/workflows/ubuntu.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/check_branch.yml b/.github/workflows/check_branch.yml
index 40292838f2..5bc20a5541 100644
--- a/.github/workflows/check_branch.yml
+++ b/.github/workflows/check_branch.yml
@@ -10,7 +10,7 @@ name: Pull Request
on: [pull_request]
jobs:
check_branch:
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
steps:
- name: Check if branch is ruby_2_7
run: |
diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml
index 6c3034dbb4..ecef045c38 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/mjit.yml
@@ -13,7 +13,7 @@ jobs:
test_task: [ "check" ] # to make job names consistent
jit_opts: [ "--jit", "--jit-wait" ]
fail-fast: false
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- name: Install libraries
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index c2efa640d9..a206886eef 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
test_task: [ "check", "test-bundler", "test-bundled-gems" ]
- os: [ubuntu-latest, ubuntu-18.04]
+ os: [ubuntu-20.04, ubuntu-18.04]
exclude:
- test_task: test-bundler
os: ubuntu-16.04