From 9fd87fe744442a10dfea0893e4abb5e343584e63 Mon Sep 17 00:00:00 2001 From: Peter Goldstein Date: Fri, 4 Feb 2022 09:10:42 -0800 Subject: [PATCH] Add Ruby 3.1 to CI Also quote 3.0 so it isn't truncated to 3. Because of this truncation, an unquoted 3.0 loads the latest Ruby 3 - at this time 3.1.0 - as opposed to a 3.0.x version. Adding quotes resolves this issue. --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75291c8..a7d415b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,8 @@ jobs: ruby_version: - 2.5 - 2.7 - - 3.0 + - '3.0' + - 3.1 jekyll_version: - "~> 4.0" steps: