Skip to content

Commit

Permalink
ci: use GHA ruby/setup-ruby instead of broken actions/setup-ruby
Browse files Browse the repository at this point in the history
- actions/setup-ruby does not work on new GHA runners Ubuntu 20.04 (missing bundler in 2.5) as per actions/setup-ruby#70
- might be deprecated as per actions/setup-ruby#80
- https://github.com/ruby/setup-ruby is recommended is superior
  • Loading branch information
cmur2 committed Dec 4, 2020
1 parent 8819d60 commit 4d6b4d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4d6b4d8

Please sign in to comment.