From d1f27819298968c93bada74d079c01c350a74e89 Mon Sep 17 00:00:00 2001 From: erwanlr Date: Tue, 22 Feb 2022 12:31:59 +0100 Subject: [PATCH] Uses ruby/setup-ruby GH action --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c7d8b704..8089beee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,14 +9,14 @@ jobs: strategy: matrix: - ruby: [2.5, 2.6, 2.7, 3.0, 3.1] + ruby: [2.5, 2.6, 2.7, '3.0', 3.1] steps: - name: Checkout code uses: actions/checkout@v2.4.0 - name: Set up Ruby ${{ matrix.ruby }} - uses: actions/setup-ruby@v1.1.3 + uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }}