Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Update release job to use different GitHub action for setting up Ruby (
Browse files Browse the repository at this point in the history
…#439)

* Update release job to use different GitHub action for setting up Ruby

actions/setup-ruby@v1 is deprecated with suggestion to use ruby/setup-ruby@v1 instead
https://github.com/ruby/setup-ruby

* Correct syntax error in release job

every step must define a `uses` or `run` key
  • Loading branch information
edwardbartholomew authored Feb 24, 2021
1 parent 6d04440 commit 64df323
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
uses: ruby/setup-ruby@v1
with:
version: 2.6.x
ruby-version: 2.6 # uses the latest release matching that version (e.g., 2.6.6)
bundler-cache: false # when true, runs 'bundle install' and caches installed gems automatically

- name: Build
run: |
Expand Down

0 comments on commit 64df323

Please sign in to comment.