Dotnet Outdated Action
This action installs the dotnet outdated
dotnet tool and then attempts to update any NuGet packages that are available.
Inputs
location
The location of the solution or project that needs to be checked for dependency updates. Default ""
.
For more information review the Specifying the Path documentation on the dotnet outdated
GitHub
includes
A comma separated list of inputs to use to limit packages being analysed to ones including those values. Default ""
.
DO NOT INCLUDE SPACES - this will break the step and cause your pipeline to fail.
The following example will only include packages with the word 'microsoft' in their name, regardless of casing.
with
includes: microsoft
This example will only include packages with the words 'microsoft' and 'automapper' in their name.
with:
includes: microsoft,automapper
For more information review the Includes and Excludes documentation on the dotnet outdated
GitHub