From 38965775e436ea3ae375bcdbc6956dc5eb9aa9ca Mon Sep 17 00:00:00 2001 From: Peter Goldstein Date: Thu, 10 Mar 2022 20:13:30 -0800 Subject: [PATCH] Quote '3.0' to ensure CI uses Ruby 3.0.x for the 3.0 entry --- .github/workflows/rspec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rspec.yml b/.github/workflows/rspec.yml index bf0111e8..b7e568b8 100644 --- a/.github/workflows/rspec.yml +++ b/.github/workflows/rspec.yml @@ -49,7 +49,7 @@ jobs: strategy: fail-fast: true matrix: - ruby: [2.5, 2.6, 2.7, 3.0, 3.1] + ruby: [2.5, 2.6, 2.7, '3.0', 3.1] steps: - uses: actions/checkout@v2