From f4da3f6dd2c27c457ac05207910e9dc3c48c7eb6 Mon Sep 17 00:00:00 2001 From: ahdbilal <55514721+ahdbilal@users.noreply.github.com> Date: Tue, 26 Jan 2021 05:31:13 -0800 Subject: [PATCH] Update building-and-testing-ruby.md we are deprecating actions/setup-ruby in favor of ruby/setup-ruby and our removing any reference from the docs. --- content/actions/guides/building-and-testing-ruby.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/guides/building-and-testing-ruby.md b/content/actions/guides/building-and-testing-ruby.md index ad30a1c5e570..200d8f1b8b02 100644 --- a/content/actions/guides/building-and-testing-ruby.md +++ b/content/actions/guides/building-and-testing-ruby.md @@ -63,7 +63,7 @@ jobs: The easiest way to specify a Ruby version is by using the `ruby/setup-ruby` action provided by the Ruby organization on GitHub. The action adds any supported Ruby version to `PATH` for each job run in a workflow. For more information see, the [`ruby/setup-ruby`](https://github.com/ruby/setup-ruby). -Using either Ruby's `ruby/setup-ruby` action or GitHub's `actions/setup-ruby` action is the recommended way of using Ruby with GitHub Actions because it ensures consistent behavior across different runners and different versions of Ruby. +Using Ruby's `ruby/setup-ruby` action is the recommended way of using Ruby with GitHub Actions because it ensures consistent behavior across different runners and different versions of Ruby. The `setup-ruby` action takes a Ruby version as an input and configures that version on the runner.