actions/setup-dotnet (actions/setup-dotnet)
### [`v4.0.1`](https://togithub.com/actions/setup-dotnet/releases/tag/v4.0.1)
[Compare Source](https://togithub.com/actions/setup-dotnet/compare/v4.0.0...v4.0.1)
##### What's Changed
##### Documentation changes:
- Update README.md to use latest action version by [@mikes-gh](https://togithub.com/mikes-gh) in [https://github.com/actions/setup-dotnet/pull/502](https://togithub.com/actions/setup-dotnet/pull/502)
- Update links to runner software by [@samuel-w](https://togithub.com/samuel-w) in [https://github.com/actions/setup-dotnet/pull/499](https://togithub.com/actions/setup-dotnet/pull/499)
##### Dependency updates:
- Bump undici from 5.27.2 to 5.28.3 by [@dependabot](https://togithub.com/dependabot) in [https://github.com/actions/setup-dotnet/pull/515](https://togithub.com/actions/setup-dotnet/pull/515)
- Bump braces from 3.0.2 to 3.0.3 and other dependency updates by [@dependabot](https://togithub.com/dependabot) in [https://github.com/actions/setup-dotnet/pull/533](https://togithub.com/actions/setup-dotnet/pull/533)
##### New Contributors
- [@mikes-gh](https://togithub.com/mikes-gh) made their first contribution in [https://github.com/actions/setup-dotnet/pull/502](https://togithub.com/actions/setup-dotnet/pull/502)
- [@samuel-w](https://togithub.com/samuel-w) made their first contribution in [https://github.com/actions/setup-dotnet/pull/499](https://togithub.com/actions/setup-dotnet/pull/499)
**Full Changelog**: https://github.com/actions/setup-dotnet/compare/v4...v4.0.1
### [`v4.0.0`](https://togithub.com/actions/setup-dotnet/releases/tag/v4.0.0)
[Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.2.0...v4.0.0)
##### What's Changed
In the scope of this release, the version of the Node.js runtime was updated to 20. The majority of dependencies were updated to the latest versions. From now on, the code for the setup-dotnet will run on Node.js 20 instead of Node.js 16.
**Breaking changes**
- Update Node.js runtime to version 20 by [@harithavattikuti](https://togithub.com/harithavattikuti) in [#484](https://togithub.com/actions/setup-dotnet/issues/484)
- Sequential version install fix by [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) in [https://github.com/actions/setup-dotnet/pull/433](https://togithub.com/actions/setup-dotnet/pull/433)
In setup-dotnet@v3, the dotnet executable was overwritten during each action run, sometimes leading to failures if the executable was still in use. This issue was resolved in setup-dotnet@v4 by introducing an additional install-script run that installs the LTS version of the dotnet executable and utilizes it for all subsequent dotnet installations. The actual download is performed only once per workflow by the initial install-script run. To use older versions, utilize global.json. For more details, refer to the [documentation](https://togithub.com/actions/setup-dotnet?tab=readme-ov-file#usage).
**Non-breaking changes**
- Refactor installer by [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) in [https://github.com/actions/setup-dotnet/pull/432](https://togithub.com/actions/setup-dotnet/pull/432)
- Allow json comments by [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) in [https://github.com/actions/setup-dotnet/pull/431](https://togithub.com/actions/setup-dotnet/pull/431)
- Update fast-xml-parser and dotnet installer scripts by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/437](https://togithub.com/actions/setup-dotnet/pull/437)
- Update dependencies by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/440](https://togithub.com/actions/setup-dotnet/pull/440)
- Bump word-wrap from 1.2.3 to 1.2.4 by [@dependabot](https://togithub.com/dependabot) in [https://github.com/actions/setup-dotnet/pull/444](https://togithub.com/actions/setup-dotnet/pull/444)
- Update installers by [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) in [https://github.com/actions/setup-dotnet/pull/462](https://togithub.com/actions/setup-dotnet/pull/462)
- Update semver by [@dmitry-shibanov](https://togithub.com/dmitry-shibanov) in [https://github.com/actions/setup-dotnet/pull/468](https://togithub.com/actions/setup-dotnet/pull/468)
##### New Contributors
- [@HarithaVattikuti](https://togithub.com/HarithaVattikuti) made their first contribution in [https://github.com/actions/setup-dotnet/pull/484](https://togithub.com/actions/setup-dotnet/pull/484)
**Full Changelog**: https://github.com/actions/setup-dotnet/compare/v3...v4.0.0
### [`v3.2.0`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.2.0)
[Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.1.0...v3.2.0)
#### What's Changed
In scope of this minor release, the ability to cache the NuGet `global-packages` folder was added in [https://github.com/actions/setup-dotnet/pull/303](https://togithub.com/actions/setup-dotnet/pull/303) by [@nogic1008](https://togithub.com/nogic1008)
For caching, the action uses the [@toolkit/cache](https://togithub.com/actions/toolkit/tree/main/packages/cache) library under the hood, which in turn allows getting rid of configuring the [@actions/cache](https://togithub.com/actions/cache) action separately.
Such input parameters as `cache` and `cache-dependency-path` were added. The `cache` input is optional, and caching is turned off by default, `cache-dependency-path` is used to specify the path to a dependency file - `packages.lock.json`.
**Example of use-case:**
```yaml
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.x
cache: true
cache-dependency-path: subdir/packages.lock.json
```
More details can be found in the [action's documentation](https://togithub.com/actions/setup-dotnet#caching-nuget-packages).
**Full Changelog**: https://github.com/actions/setup-dotnet/compare/v3...v3.2.0
### [`v3.1.0`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.1.0)
[Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.0.3...v3.1.0)
#### What's Changed
This minor release includes the following new **features**:
- The latest patch syntax was added in [https://github.com/actions/setup-dotnet/pull/428](https://togithub.com/actions/setup-dotnet/pull/428) by [@IvanZosimov](https://togithub.com/IvanZosimov)
```yml
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.2xx'
```
More details about the new syntax can be found [here](https://togithub.com/actions/setup-dotnet#supported-version-syntax).
- The `global-json-file` input was updated to accept absolute paths in [https://github.com/actions/setup-dotnet/pull/396](https://togithub.com/actions/setup-dotnet/pull/396) by [@othmane-kinane-nw](https://togithub.com/othmane-kinane-nw)
- Error messages were made more informative in [https://github.com/actions/setup-dotnet/pull/375](https://togithub.com/actions/setup-dotnet/pull/375) by [@IvanZosimov](https://togithub.com/IvanZosimov)
- Notification if the `global.json` was not found in the root directory was added in [https://github.com/actions/setup-dotnet/pull/344](https://togithub.com/actions/setup-dotnet/pull/344) by [@teo-tsirpanis](https://togithub.com/teo-tsirpanis)
It also contains several **infrastructure changes**:
- Update to latest `actions/publish-action` by [@JamesMGreene](https://togithub.com/JamesMGreene) in [https://github.com/actions/setup-dotnet/pull/348](https://togithub.com/actions/setup-dotnet/pull/348)
- Update version of publish-action by [@MaksimZhukov](https://togithub.com/MaksimZhukov) in [https://github.com/actions/setup-dotnet/pull/368](https://togithub.com/actions/setup-dotnet/pull/368)
- Update action to use reusable workflows by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/358](https://togithub.com/actions/setup-dotnet/pull/358)
- Update workflow badges by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/377](https://togithub.com/actions/setup-dotnet/pull/377)
- Add and configure ESLint and update configuration for Prettier by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/391](https://togithub.com/actions/setup-dotnet/pull/391)
- Turn on automatic update of ESLint and Prettier configuration files by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/395](https://togithub.com/actions/setup-dotnet/pull/395)
- Update e2e tests and e2e test infrastructure by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/414](https://togithub.com/actions/setup-dotnet/pull/414)
- Refactor and update unit-tests by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/418](https://togithub.com/actions/setup-dotnet/pull/418)
- Increase amount of retries for Dotnet installation scripts tests by [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) in [https://github.com/actions/setup-dotnet/pull/427](https://togithub.com/actions/setup-dotnet/pull/427)
#### New Contributors
- [@teo-tsirpanis](https://togithub.com/teo-tsirpanis) made their first contribution in [https://github.com/actions/setup-dotnet/pull/344](https://togithub.com/actions/setup-dotnet/pull/344)
- [@JamesMGreene](https://togithub.com/JamesMGreene) made their first contribution in [https://github.com/actions/setup-dotnet/pull/348](https://togithub.com/actions/setup-dotnet/pull/348)
- [@othmane-kinane-nw](https://togithub.com/othmane-kinane-nw) made their first contribution in [https://github.com/actions/setup-dotnet/pull/396](https://togithub.com/actions/setup-dotnet/pull/396)
- [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) made their first contribution in [https://github.com/actions/setup-dotnet/pull/427](https://togithub.com/actions/setup-dotnet/pull/427)
**Full Changelog**: https://github.com/actions/setup-dotnet/compare/v3...v3.1.0
### [`v3.0.3`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.0.3): Fix issue with ECONNRESET and refactor authutil
[Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.0.2...v3.0.3)
In scope of this release we updated the link to the .Net Core releases index file ([#337](https://togithub.com/actions/setup-dotnet/pull/337)) in order to fix the [ECONNRESET error](https://togithub.com/actions/setup-dotnet/issues/333). Besides, we refactored authutil.ts to get rid of xmlbuilder ([https://github.com/actions/setup-dotnet/pull/336](https://togithub.com/actions/setup-dotnet/pull/336))
### [`v3.0.2`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.0.2): Updating @action/core, adding logic for processing the DOTNET_INSTALL_DIR environment variable.
[Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.0.1...v3.0.2)
In the scope of this release such changes were made:
1. The logic for processing the `DOTNET_INSTALL_DIR` environment variable was added to support relative paths and paths containing `~` [#332](https://togithub.com/actions/setup-dotnet/pull/332)
2. The version of `@actions/core` was bumped to 1.10.0 [#331](https://togithub.com/actions/setup-dotnet/pull/331)
### [`v3.0.1`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.0.1): Enable DOTNET_INSTALL_DIR environment variable
[Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.0.0...v3.0.1)
In scope of this release the `DOTNET_INSTALL_DIR` environment variable was enabled to add the ability to change the installation directory for .NET SDK [#329](https://togithub.com/actions/setup-dotnet/pull/329). The `DOTNET_INSTALL_DIR` can be helpful when access to the default installation directory, for instance, on self-hosted runners, is denied.
Example of usage:
```yml
build:
runs-on: self-hosted
env:
DOTNET_INSTALL_DIR: "path/to/directory"
steps:
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '3.1.x'
```
### [`v3.0.0`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.0.0)
[Compare Source](https://togithub.com/actions/setup-dotnet/compare/v2.1.1...v3.0.0)
This major release includes the following **changes:**
- [#219](https://togithub.com/actions/setup-dotnet/issues/219) New input `dotnet-quality` was added in [#315](https://togithub.com/actions/setup-dotnet/pull/315):
```yaml
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-quality: 'preview'
- run: dotnet build
```
More in detail [here](https://togithub.com/actions/setup-dotnet#using-the-dotnet-quality-input).
- [#241](https://togithub.com/actions/setup-dotnet/issues/241) The output variable `dotnet-version` which contains the installed by the action SDK version was added in [#324](https://togithub.com/actions/setup-dotnet/pull/324):
```yaml
- uses: actions/setup-dotnet@v3
id: cp310
with:
dotnet-version: '3.1.422'
- run: echo '${{ steps.cp310.outputs.dotnet-version }}' # outputs 3.1.422
```
More in detail [here](https://togithub.com/actions/setup-dotnet/tree/main#dotnet-version).
- The `dotnet-version` syntax was updated and now it allows to specify the prerelease version without using `include-prerelease` input. The `include-prerelease` input was cut out:
```yaml
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '5.0.0-preview.6'
```
More in detail [here](https://togithub.com/actions/setup-dotnet#supported-version-syntax).
- [#251](https://togithub.com/actions/setup-dotnet/issues/251) The problem with out of support .NET version warnings was solved in [#315](https://togithub.com/actions/setup-dotnet/pull/315).
**Breaking changes**:
- Installation paths for Windows and Ubuntu images were changed to match the location of pre-installed SDKs. In more detail, read [here](https://togithub.com/actions/setup-dotnet/blob/main/docs/adrs/v3-setup-dotnet.md#breaking-changes).
Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
[ ] If you want to rebase/retry this PR, check this box
This PR contains the following updates:
v2.1.1
->v4.0.1
v3
->v4
Release Notes
actions/setup-dotnet (actions/setup-dotnet)
### [`v4.0.1`](https://togithub.com/actions/setup-dotnet/releases/tag/v4.0.1) [Compare Source](https://togithub.com/actions/setup-dotnet/compare/v4.0.0...v4.0.1) ##### What's Changed ##### Documentation changes: - Update README.md to use latest action version by [@mikes-gh](https://togithub.com/mikes-gh) in [https://github.com/actions/setup-dotnet/pull/502](https://togithub.com/actions/setup-dotnet/pull/502) - Update links to runner software by [@samuel-w](https://togithub.com/samuel-w) in [https://github.com/actions/setup-dotnet/pull/499](https://togithub.com/actions/setup-dotnet/pull/499) ##### Dependency updates: - Bump undici from 5.27.2 to 5.28.3 by [@dependabot](https://togithub.com/dependabot) in [https://github.com/actions/setup-dotnet/pull/515](https://togithub.com/actions/setup-dotnet/pull/515) - Bump braces from 3.0.2 to 3.0.3 and other dependency updates by [@dependabot](https://togithub.com/dependabot) in [https://github.com/actions/setup-dotnet/pull/533](https://togithub.com/actions/setup-dotnet/pull/533) ##### New Contributors - [@mikes-gh](https://togithub.com/mikes-gh) made their first contribution in [https://github.com/actions/setup-dotnet/pull/502](https://togithub.com/actions/setup-dotnet/pull/502) - [@samuel-w](https://togithub.com/samuel-w) made their first contribution in [https://github.com/actions/setup-dotnet/pull/499](https://togithub.com/actions/setup-dotnet/pull/499) **Full Changelog**: https://github.com/actions/setup-dotnet/compare/v4...v4.0.1 ### [`v4.0.0`](https://togithub.com/actions/setup-dotnet/releases/tag/v4.0.0) [Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.2.0...v4.0.0) ##### What's Changed In the scope of this release, the version of the Node.js runtime was updated to 20. The majority of dependencies were updated to the latest versions. From now on, the code for the setup-dotnet will run on Node.js 20 instead of Node.js 16. **Breaking changes** - Update Node.js runtime to version 20 by [@harithavattikuti](https://togithub.com/harithavattikuti) in [#484](https://togithub.com/actions/setup-dotnet/issues/484) - Sequential version install fix by [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) in [https://github.com/actions/setup-dotnet/pull/433](https://togithub.com/actions/setup-dotnet/pull/433) In setup-dotnet@v3, the dotnet executable was overwritten during each action run, sometimes leading to failures if the executable was still in use. This issue was resolved in setup-dotnet@v4 by introducing an additional install-script run that installs the LTS version of the dotnet executable and utilizes it for all subsequent dotnet installations. The actual download is performed only once per workflow by the initial install-script run. To use older versions, utilize global.json. For more details, refer to the [documentation](https://togithub.com/actions/setup-dotnet?tab=readme-ov-file#usage). **Non-breaking changes** - Refactor installer by [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) in [https://github.com/actions/setup-dotnet/pull/432](https://togithub.com/actions/setup-dotnet/pull/432) - Allow json comments by [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) in [https://github.com/actions/setup-dotnet/pull/431](https://togithub.com/actions/setup-dotnet/pull/431) - Update fast-xml-parser and dotnet installer scripts by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/437](https://togithub.com/actions/setup-dotnet/pull/437) - Update dependencies by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/440](https://togithub.com/actions/setup-dotnet/pull/440) - Bump word-wrap from 1.2.3 to 1.2.4 by [@dependabot](https://togithub.com/dependabot) in [https://github.com/actions/setup-dotnet/pull/444](https://togithub.com/actions/setup-dotnet/pull/444) - Update installers by [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) in [https://github.com/actions/setup-dotnet/pull/462](https://togithub.com/actions/setup-dotnet/pull/462) - Update semver by [@dmitry-shibanov](https://togithub.com/dmitry-shibanov) in [https://github.com/actions/setup-dotnet/pull/468](https://togithub.com/actions/setup-dotnet/pull/468) ##### New Contributors - [@HarithaVattikuti](https://togithub.com/HarithaVattikuti) made their first contribution in [https://github.com/actions/setup-dotnet/pull/484](https://togithub.com/actions/setup-dotnet/pull/484) **Full Changelog**: https://github.com/actions/setup-dotnet/compare/v3...v4.0.0 ### [`v3.2.0`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.2.0) [Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.1.0...v3.2.0) #### What's Changed In scope of this minor release, the ability to cache the NuGet `global-packages` folder was added in [https://github.com/actions/setup-dotnet/pull/303](https://togithub.com/actions/setup-dotnet/pull/303) by [@nogic1008](https://togithub.com/nogic1008) For caching, the action uses the [@toolkit/cache](https://togithub.com/actions/toolkit/tree/main/packages/cache) library under the hood, which in turn allows getting rid of configuring the [@actions/cache](https://togithub.com/actions/cache) action separately. Such input parameters as `cache` and `cache-dependency-path` were added. The `cache` input is optional, and caching is turned off by default, `cache-dependency-path` is used to specify the path to a dependency file - `packages.lock.json`. **Example of use-case:** ```yaml - uses: actions/setup-dotnet@v3 with: dotnet-version: 6.x cache: true cache-dependency-path: subdir/packages.lock.json ``` More details can be found in the [action's documentation](https://togithub.com/actions/setup-dotnet#caching-nuget-packages). **Full Changelog**: https://github.com/actions/setup-dotnet/compare/v3...v3.2.0 ### [`v3.1.0`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.1.0) [Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.0.3...v3.1.0) #### What's Changed This minor release includes the following new **features**: - The latest patch syntax was added in [https://github.com/actions/setup-dotnet/pull/428](https://togithub.com/actions/setup-dotnet/pull/428) by [@IvanZosimov](https://togithub.com/IvanZosimov) ```yml - uses: actions/setup-dotnet@v3 with: dotnet-version: '7.0.2xx' ``` More details about the new syntax can be found [here](https://togithub.com/actions/setup-dotnet#supported-version-syntax). - The `global-json-file` input was updated to accept absolute paths in [https://github.com/actions/setup-dotnet/pull/396](https://togithub.com/actions/setup-dotnet/pull/396) by [@othmane-kinane-nw](https://togithub.com/othmane-kinane-nw) - Error messages were made more informative in [https://github.com/actions/setup-dotnet/pull/375](https://togithub.com/actions/setup-dotnet/pull/375) by [@IvanZosimov](https://togithub.com/IvanZosimov) - Notification if the `global.json` was not found in the root directory was added in [https://github.com/actions/setup-dotnet/pull/344](https://togithub.com/actions/setup-dotnet/pull/344) by [@teo-tsirpanis](https://togithub.com/teo-tsirpanis) It also contains several **infrastructure changes**: - Update to latest `actions/publish-action` by [@JamesMGreene](https://togithub.com/JamesMGreene) in [https://github.com/actions/setup-dotnet/pull/348](https://togithub.com/actions/setup-dotnet/pull/348) - Update version of publish-action by [@MaksimZhukov](https://togithub.com/MaksimZhukov) in [https://github.com/actions/setup-dotnet/pull/368](https://togithub.com/actions/setup-dotnet/pull/368) - Update action to use reusable workflows by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/358](https://togithub.com/actions/setup-dotnet/pull/358) - Update workflow badges by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/377](https://togithub.com/actions/setup-dotnet/pull/377) - Add and configure ESLint and update configuration for Prettier by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/391](https://togithub.com/actions/setup-dotnet/pull/391) - Turn on automatic update of ESLint and Prettier configuration files by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/395](https://togithub.com/actions/setup-dotnet/pull/395) - Update e2e tests and e2e test infrastructure by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/414](https://togithub.com/actions/setup-dotnet/pull/414) - Refactor and update unit-tests by [@IvanZosimov](https://togithub.com/IvanZosimov) in [https://github.com/actions/setup-dotnet/pull/418](https://togithub.com/actions/setup-dotnet/pull/418) - Increase amount of retries for Dotnet installation scripts tests by [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) in [https://github.com/actions/setup-dotnet/pull/427](https://togithub.com/actions/setup-dotnet/pull/427) #### New Contributors - [@teo-tsirpanis](https://togithub.com/teo-tsirpanis) made their first contribution in [https://github.com/actions/setup-dotnet/pull/344](https://togithub.com/actions/setup-dotnet/pull/344) - [@JamesMGreene](https://togithub.com/JamesMGreene) made their first contribution in [https://github.com/actions/setup-dotnet/pull/348](https://togithub.com/actions/setup-dotnet/pull/348) - [@othmane-kinane-nw](https://togithub.com/othmane-kinane-nw) made their first contribution in [https://github.com/actions/setup-dotnet/pull/396](https://togithub.com/actions/setup-dotnet/pull/396) - [@nikolai-laevskii](https://togithub.com/nikolai-laevskii) made their first contribution in [https://github.com/actions/setup-dotnet/pull/427](https://togithub.com/actions/setup-dotnet/pull/427) **Full Changelog**: https://github.com/actions/setup-dotnet/compare/v3...v3.1.0 ### [`v3.0.3`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.0.3): Fix issue with ECONNRESET and refactor authutil [Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.0.2...v3.0.3) In scope of this release we updated the link to the .Net Core releases index file ([#337](https://togithub.com/actions/setup-dotnet/pull/337)) in order to fix the [ECONNRESET error](https://togithub.com/actions/setup-dotnet/issues/333). Besides, we refactored authutil.ts to get rid of xmlbuilder ([https://github.com/actions/setup-dotnet/pull/336](https://togithub.com/actions/setup-dotnet/pull/336)) ### [`v3.0.2`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.0.2): Updating @action/core, adding logic for processing the DOTNET_INSTALL_DIR environment variable. [Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.0.1...v3.0.2) In the scope of this release such changes were made: 1. The logic for processing the `DOTNET_INSTALL_DIR` environment variable was added to support relative paths and paths containing `~` [#332](https://togithub.com/actions/setup-dotnet/pull/332) 2. The version of `@actions/core` was bumped to 1.10.0 [#331](https://togithub.com/actions/setup-dotnet/pull/331) ### [`v3.0.1`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.0.1): Enable DOTNET_INSTALL_DIR environment variable [Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3.0.0...v3.0.1) In scope of this release the `DOTNET_INSTALL_DIR` environment variable was enabled to add the ability to change the installation directory for .NET SDK [#329](https://togithub.com/actions/setup-dotnet/pull/329). The `DOTNET_INSTALL_DIR` can be helpful when access to the default installation directory, for instance, on self-hosted runners, is denied. Example of usage: ```yml build: runs-on: self-hosted env: DOTNET_INSTALL_DIR: "path/to/directory" steps: - uses: actions/setup-dotnet@v3 with: dotnet-version: '3.1.x' ``` ### [`v3.0.0`](https://togithub.com/actions/setup-dotnet/releases/tag/v3.0.0) [Compare Source](https://togithub.com/actions/setup-dotnet/compare/v2.1.1...v3.0.0) This major release includes the following **changes:** - [#219](https://togithub.com/actions/setup-dotnet/issues/219) New input `dotnet-quality` was added in [#315](https://togithub.com/actions/setup-dotnet/pull/315): ```yaml - uses: actions/setup-dotnet@v3 with: dotnet-version: '6.0.x' dotnet-quality: 'preview' - run: dotnet buildConfiguration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.