Update README.md
This commit is contained in:
@@ -12,8 +12,8 @@ See [action.yml](action.yml)
|
|||||||
Basic:
|
Basic:
|
||||||
```yaml
|
```yaml
|
||||||
actions:
|
actions:
|
||||||
- uses: actions/checkout@latest
|
- uses: actions/checkout@master
|
||||||
- uses: actions/setup-ruby@latest
|
- uses: actions/setup-ruby@master
|
||||||
with:
|
with:
|
||||||
version: 2.x // Version range or exact version of a Ruby version to use, using semvers version range syntax.
|
version: 2.x // Version range or exact version of a Ruby version to use, using semvers version range syntax.
|
||||||
- run: ruby hello.rb
|
- run: ruby hello.rb
|
||||||
@@ -28,9 +28,9 @@ jobs:
|
|||||||
ruby: [ 2.x, 3.x ]
|
ruby: [ 2.x, 3.x ]
|
||||||
name: Ruby ${{ matrix.ruby }} sample
|
name: Ruby ${{ matrix.ruby }} sample
|
||||||
actions:
|
actions:
|
||||||
- uses: actions/checkout@latest
|
- uses: actions/checkout@master
|
||||||
- name: Setup ruby
|
- name: Setup ruby
|
||||||
uses: actions/setup-ruby@latest
|
uses: actions/setup-ruby@master
|
||||||
with:
|
with:
|
||||||
version: ${{ matrix.ruby }}
|
version: ${{ matrix.ruby }}
|
||||||
architecture: x64
|
architecture: x64
|
||||||
|
|||||||
Reference in New Issue
Block a user