Skip to content

Commit d6004ce

Browse files
author
Danny McCormick
committed
Sdk doc nits
1 parent 99b3249 commit d6004ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This action sets up a dotnet environment for use in actions by:
44

5-
- optionally downloading and caching a version of dotnet by version and adding to PATH
5+
- optionally downloading and caching a version of dotnet by SDK version and adding to PATH
66
- registering problem matchers for error output
77

88
# Usage
@@ -15,7 +15,7 @@ steps:
1515
- uses: actions/checkout@master
1616
- uses: actions/setup-dotnet@v1
1717
with:
18-
version: '2.2.103' // Version to use.
18+
version: '2.2.103' // SDK Version to use.
1919
- run: dotnet build <my project>
2020
```
2121

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: 'Setup a Dotnet environment and add it to the PATH, additionally pr
33
author: 'GitHub'
44
inputs:
55
version:
6-
description: 'Version to use. E.g. 2.2.104'
6+
description: 'SDK version to use. E.g. 2.2.104'
77
runs:
88
using: 'node12'
99
main: 'lib/setup-dotnet.js'

0 commit comments

Comments
 (0)