Skip to content

Commit

Permalink
Default to .NET 7. (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
AraHaan authored Dec 8, 2021
1 parent 3d33168 commit 908aae4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ A github action to install the latest daily build of the .NET SDK.

- uses: Elskom/setup-latest-dotnet@main
with:
# major version of the .NET SDK to look for the newest version on in the feeds.
VERSION_MAJOR: '6'
# minor version of the .NET SDK to look for the newest version on in the feeds.
# major version of the .NET SDK to look for the newest version on in the feeds (optional, default is '7').
VERSION_MAJOR: '7'
# minor version of the .NET SDK to look for the newest version on in the feeds (optional, default is '0').
VERSION_MINOR: '0'
# version band of the .NET SDK to look for the newest version on in the feeds (optional, default is '1xx').
# for different values look in the dotnet/installer github repository.
VERSION_BAND: '1xx'
```
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ inputs:
VERSION_MAJOR:
description: Major version of the .NET SDK to install.
required: false
default: '6'
default: '7'
VERSION_MINOR:
description: Minor version of the .NET SDK to install.
required: false
Expand Down

0 comments on commit 908aae4

Please sign in to comment.