From 3e19008a125f0906d71f789537cfedae55fd7ff0 Mon Sep 17 00:00:00 2001 From: Yuji Yaginuma Date: Fri, 10 Nov 2023 15:44:53 +0900 Subject: [PATCH] Fix Ruby version on CI Currently, Ruby version is specified unexist version(`2.8`). In this case, it seems that `ruby-build` use stable version(`3.2.2`). https://github.com/trilogy-libraries/trilogy/actions/runs/6646865109/job/18062157607#step:4:1205 But this pattern is already tested by other build. I assume this is just a typo of `2.7` that the last version of 2.x series. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bae5aba..8404126 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: ruby: "1.9" - mysql: "5.7" distribution: "debian:buster" - ruby: "2.8" + ruby: "2.7" steps: - uses: actions/checkout@v4 - name: docker login