Framework
Framework copied to clipboard
Update actions/setup-dotnet action to v3
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| actions/setup-dotnet | action | major | v2.1.0 -> v3.0.0 |
Release Notes
actions/setup-dotnet
v3.0.0
This major release includes the following changes:
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-quality: 'preview'
- run: dotnet build <my project>
More in detail here.
- #241 The output variable
dotnet-versionwhich contains the installed by the action SDK version was added in #324:
- 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.
- The
dotnet-versionsyntax was updated and now it allows to specify the prerelease version without usinginclude-prereleaseinput. Theinclude-prereleaseinput was cut out:
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '5.0.0-preview.6'
More in detail here.
Breaking changes:
- Installation paths for Windows and Ubuntu images were changed to match the location of pre-installed SDKs. In more detail, read here.
v2.1.1
In scope of this release we add support for Windows-arm. Besides, we change getInput to getBooleanInput for include-prerelease.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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 this update again.
- [ ] If you want to rebase/retry this PR, click this checkbox.
This PR has been generated by Mend Renovate. View repository job log here.