From f2298069aea6f63e7b8686c2337495adaa0c3da8 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Wed, 14 Feb 2024 18:48:32 +0100 Subject: [PATCH] CI: Avoid 3.0 becoming "3" in YAML (#1001) When stringifying 3.0, the CI's YAML engine would create the string "3" rather than "3.0". Turning this specific value into a String avoids this display difference. --- .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 5f87860d..205e79fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [3.0, 3.1, 3.2, 3.3, head, truffleruby-head] + ruby: ['3.0', 3.1, 3.2, 3.3, head, truffleruby-head] env: RAILS_ENV: test steps: