From 4d6b4d8f976c5417bc17ad384a8826d6f820e639 Mon Sep 17 00:00:00 2001 From: cn Date: Fri, 4 Dec 2020 08:48:25 +0100 Subject: [PATCH] ci: use GHA ruby/setup-ruby instead of broken actions/setup-ruby - actions/setup-ruby does not work on new GHA runners Ubuntu 20.04 (missing bundler in 2.5) as per https://github.com/actions/setup-ruby/issues/70 - might be deprecated as per https://github.com/actions/setup-ruby/issues/80 - https://github.com/ruby/setup-ruby is recommended is superior --- .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 f36a254..a0efc53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Set up Ruby ${{ matrix.ruby-version }} - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} - name: Install dependencies