Use v1 tag for setup-dotnet

This commit is contained in:
Zachary Eisinger 2020-08-28 11:58:17 -07:00
parent 9bdaa47c80
commit 221e7bcc3b

View File

@ -18,7 +18,7 @@ Basic:
```yaml ```yaml
steps: steps:
- uses: actions/checkout@main - uses: actions/checkout@main
- uses: actions/setup-dotnet@v1.5.0 - uses: actions/setup-dotnet@v1
with: with:
dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel
- run: dotnet build <my project> - run: dotnet build <my project>
@ -47,7 +47,7 @@ Authentication for nuget feeds:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
# Authenticates packages to push to GPR # Authenticates packages to push to GPR
- uses: actions/setup-dotnet@v1.5.0 - uses: actions/setup-dotnet@v1
with: with:
dotnet-version: '3.1.x' # SDK Version to use. dotnet-version: '3.1.x' # SDK Version to use.
source-url: https://nuget.pkg.github.com/<owner>/index.json source-url: https://nuget.pkg.github.com/<owner>/index.json