From f1768df5076ae37fd5fa118e94986e1b404332fd Mon Sep 17 00:00:00 2001 From: Kiselev Valentine Date: Tue, 10 Dec 2019 08:42:08 +0300 Subject: [PATCH] Fix CI for Ruby 2.3 Support for github action of ruby 2.3 was removed. Now according to https://github.com/actions/setup-ruby/blob/master/action.yml theminimal version is 2.4. --- .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 d90932a3..ca52a4e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: [2.3.x, 2.4.x, 2.5.x, 2.6.x] + ruby: [2.4.x, 2.5.x, 2.6.x] steps: - uses: actions/checkout@v1