Update README.md

This commit is contained in:
Danny McCormick 2019-07-23 15:45:43 -04:00 committed by GitHub
parent 0ee1d31b44
commit 1566687aab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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-dotnet@latest - uses: actions/setup-dotnet@master
with: with:
version: 2.2.103 // Version to use. version: 2.2.103 // Version to use.
- run: dotnet build <my project> - run: dotnet build <my project>
@ -28,9 +28,9 @@ jobs:
dotnet: [ 2.2.103, 3.5.2, 4.5.1 ] dotnet: [ 2.2.103, 3.5.2, 4.5.1 ]
name: Dotnet ${{ matrix.dotnet }} sample name: Dotnet ${{ matrix.dotnet }} sample
actions: actions:
- uses: actions/checkout@latest - uses: actions/checkout@master
- name: Setup dotnet - name: Setup dotnet
uses: actions/setup-dotnet@latest uses: actions/setup-dotnet@master
with: with:
version: ${{ matrix.dotnet }} version: ${{ matrix.dotnet }}
- run: dotnet build <my project> - run: dotnet build <my project>