diff --git a/README.md b/README.md index f213887..fe995d7 100644 --- a/README.md +++ b/README.md @@ -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' ``` diff --git a/action.yml b/action.yml index 83e86ca..072792c 100644 --- a/action.yml +++ b/action.yml @@ -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