From da38c03d1dbfec7b61eec7480d1f2a85fda9fbb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20G=C3=A9rard?= Date: Wed, 27 Jan 2021 14:37:38 +0100 Subject: [PATCH] Change GHA to use up-to-date setup-ruby action It seems that GHA is not longer compatible with the specific version for setup-ruby that was used before. I'm hoping defaulting to the v1 version will fix the issue. --- .github/workflows/cucumber-ruby.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cucumber-ruby.yml b/.github/workflows/cucumber-ruby.yml index 32c059014c..aa280a23b6 100644 --- a/.github/workflows/cucumber-ruby.yml +++ b/.github/workflows/cucumber-ruby.yml @@ -19,8 +19,8 @@ jobs: - name: Set up Ruby # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, # change this to (see https://github.com/ruby/setup-ruby#versioning): - # uses: ruby/setup-ruby@v1 - uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0 + uses: ruby/setup-ruby@v1 + # uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0 with: ruby-version: 2.6 - name: Install dependencies