From 51b5bc2e0e6549a2e5bb91f50db8f1caf46eda7b Mon Sep 17 00:00:00 2001 From: OKURA Masafumi Date: Fri, 5 Mar 2021 21:36:45 +0900 Subject: [PATCH] Add a comment about version quotations to README As described in the comment, due to a bug discussed on https://github.com/actions/runner/issues/849, we currently have to use quotes for '3.0' as a workaround. This change makes it easy for people not to remove quotes as they misunderstand it's a typo. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3aa49a4..f1c33ac 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] + # Due to a bug discussed on https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' ruby: [2.5, 2.6, 2.7, '3.0', head, jruby, jruby-head, truffleruby, truffleruby-head] runs-on: ${{ matrix.os }} steps: