Skip to content

Commit 1566687

Browse files
author
Danny McCormick
authored
Update README.md
1 parent 0ee1d31 commit 1566687

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ See [action.yml](action.yml)
1212
Basic:
1313
```yaml
1414
actions:
15-
- uses: actions/checkout@latest
16-
- uses: actions/setup-dotnet@latest
15+
- uses: actions/checkout@master
16+
- uses: actions/setup-dotnet@master
1717
with:
1818
version: 2.2.103 // Version to use.
1919
- run: dotnet build <my project>
@@ -28,9 +28,9 @@ jobs:
2828
dotnet: [ 2.2.103, 3.5.2, 4.5.1 ]
2929
name: Dotnet ${{ matrix.dotnet }} sample
3030
actions:
31-
- uses: actions/checkout@latest
31+
- uses: actions/checkout@master
3232
- name: Setup dotnet
33-
uses: actions/setup-dotnet@latest
33+
uses: actions/setup-dotnet@master
3434
with:
3535
version: ${{ matrix.dotnet }}
3636
- run: dotnet build <my project>

0 commit comments

Comments
 (0)