From 9dd8f4e44a04e7ff304cf172242a85e4246de947 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Thu, 9 Apr 2020 19:59:10 +0200 Subject: [PATCH] Use a full commit sha as required by GitHub for 3rd-party actions --- ci/ruby.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/ruby.yml b/ci/ruby.yml index 7a78b45..76c166e 100644 --- a/ci/ruby.yml +++ b/ci/ruby.yml @@ -21,7 +21,10 @@ jobs: steps: - uses: actions/checkout@v2 - name: Set up Ruby - uses: ruby/setup-ruby@v1 + # 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 with: ruby-version: 2.6 - name: Install dependencies