Files
setup-ruby/action.yml
Danny McCormick 50f3cc9f0b
Some checks failed
Main workflow / Run (ubuntu-latest) (push) Has been cancelled
Main workflow / Run (windows-latest) (push) Has been cancelled
Deprecate version
2019-09-12 10:37:13 -04:00

15 lines
592 B
YAML

name: 'Setup Ruby environment'
description: 'Setup a Ruby environment and add it to the PATH'
author: 'GitHub'
inputs:
ruby-version:
description: 'Version range or exact version of a Ruby version to use.'
default: '>= 2.4'
# Deprecated option, do not use. Will not be supported after October 1, 2019
version:
description: 'Deprecated. Use ruby-version instead. Will not be supported after October 1, 2019'
deprecationMessage: 'The version property will not be supported after October 1, 2019. Use ruby-version instead'
runs:
using: 'node12'
main: 'lib/setup-ruby.js'