From dba9e09c2702f42ee84d65a9178bd5d504c3ecdd Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Fri, 16 Feb 2024 13:56:01 +0100 Subject: [PATCH] CI: Quote YAML value to avoid 3.0 rendering as "3" --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24b3fab..14ff5d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: ruby: - - 3.0 + - '3.0' - 3.1 - 3.2 - 3.3 @@ -24,7 +24,7 @@ jobs: - truffleruby-head steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }}