-
v3.2.0 Stable
released this
2023-05-29 18:43:18 +08:00 | 87 commits to main since this releaseWhat's Changed
In scope of this minor release, the ability to cache the NuGet
global-packagesfolder was added in https://github.com/actions/setup-dotnet/pull/303 by @nogic1008For caching, the action uses the @toolkit/cache library under the hood, which in turn allows getting rid of configuring the @actions/cache action separately.
Such input parameters as
cacheandcache-dependency-pathwere added. Thecacheinput is optional, and caching is turned off by default,cache-dependency-pathis used to specify the path to a dependency file -packages.lock.json.Example of use-case:
- uses: actions/setup-dotnet@v3 with: dotnet-version: 6.x cache: true cache-dependency-path: subdir/packages.lock.jsonMore details can be found in the action's documentation.
Full Changelog: https://github.com/actions/setup-dotnet/compare/v3...v3.2.0
Downloads