From 7bac0e9a6c6f7aef5c1ca3b091b86b39bd21811a Mon Sep 17 00:00:00 2001 From: Alec Gibson <12036746+alecgibson@users.noreply.github.com> Date: Wed, 23 Nov 2022 14:30:58 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=E2=99=80=EF=B8=8F=20Move?= =?UTF-8?q?=20to=20`ruby/setup-ruby`=20action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The [`actions/setup-ruby`][1] action has been deprecated and advises moving to [`ruby/setup-ruby`][2] [1]: https://github.com/actions/setup-ruby [2]: https://github.com/ruby/setup-ruby --- .github/workflows/docs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index eda3722e..ea741568 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -18,10 +18,10 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v2 - - uses: actions/setup-ruby@v1 + - uses: actions/checkout@v3 + - uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7 + ruby-version: '2.7' - name: Install run: cd docs && gem install bundler && bundle install - name: Build