From d838e152a7aaa4977aee4771a94ba8e3d7a1c672 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Sat, 21 Sep 2019 19:12:14 +0200 Subject: [PATCH] Update README * Use more realistic versions. * `architecture` is not used for this action. * Remove redundant `name:` in example. --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b8da96e..e9ebd6b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ steps: - uses: actions/checkout@master - uses: actions/setup-ruby@v1 with: - ruby-version: '2.x' # Version range or exact version of a Ruby version to use, using semvers version range syntax. + ruby-version: '2.6.x' # Version range or exact version of a Ruby version to use, using semvers version range syntax. - run: ruby hello.rb ``` @@ -30,15 +30,13 @@ jobs: runs-on: ubuntu-16.04 strategy: matrix: - ruby: [ '2.x', '3.x' ] + ruby: [ '2.5.x', '2.6.x' ] name: Ruby ${{ matrix.ruby }} sample steps: - uses: actions/checkout@master - - name: Setup ruby - uses: actions/setup-ruby@v1 + - uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - architecture: 'x64' - run: ruby hello.rb ```