Merged
Conversation
Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 1 to 3. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@v1...v3) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
crickman
approved these changes
Aug 28, 2023
teamleader-dev
pushed a commit
to vlink-group/chat-copilot
that referenced
this pull request
Oct 7, 2024
Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 1 to 3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/setup-dotnet/releases">actions/setup-dotnet's releases</a>.</em></p> <blockquote> <h2>v3.0.0</h2> <p>This major release includes the following <strong>changes:</strong></p> <ul> <li><a href="https://redirect.github.com/actions/setup-dotnet/issues/219">#219</a> New input <code>dotnet-quality</code> was added in <a href="https://redirect.github.com/actions/setup-dotnet/pull/315">#315</a>:</li> </ul> <pre lang="yaml"><code> - uses: actions/setup-dotnet@v3 with: dotnet-version: '6.0.x' dotnet-quality: 'preview' - run: dotnet build <my project> </code></pre> <p>More in detail <a href="https://github.com/actions/setup-dotnet#using-the-dotnet-quality-input">here</a>.</p> <ul> <li><a href="https://redirect.github.com/actions/setup-dotnet/issues/241">#241</a> The output variable <code>dotnet-version</code> which contains the installed by the action SDK version was added in <a href="https://redirect.github.com/actions/setup-dotnet/pull/324">#324</a>:</li> </ul> <pre lang="yaml"><code> - uses: actions/setup-dotnet@v3 id: cp310 with: dotnet-version: '3.1.422' - run: echo '${{ steps.cp310.outputs.dotnet-version }}' # outputs 3.1.422 </code></pre> <p>More in detail <a href="https://github.com/actions/setup-dotnet/tree/main#dotnet-version">here</a>.</p> <ul> <li>The <code>dotnet-version</code> syntax was updated and now it allows to specify the prerelease version without using <code>include-prerelease</code> input. The <code>include-prerelease</code> input was cut out:</li> </ul> <pre lang="yaml"><code> - uses: actions/setup-dotnet@v3 with: dotnet-version: '5.0.0-preview.6' </code></pre> <p>More in detail <a href="https://github.com/actions/setup-dotnet#supported-version-syntax">here</a>.</p> <ul> <li><a href="https://redirect.github.com/actions/setup-dotnet/issues/251">#251</a> The problem with out of support .NET version warnings was solved in <a href="https://redirect.github.com/actions/setup-dotnet/pull/315">#315</a>.</li> </ul> <p><strong>Breaking changes</strong>:</p> <ul> <li>Installation paths for Windows and Ubuntu images were changed to match the location of pre-installed SDKs. In more detail, read <a href="https://github.com/actions/setup-dotnet/blob/main/docs/adrs/v3-setup-dotnet.md#breaking-changes">here</a>.</li> </ul> <h2>Add support for Windows-arm</h2> <p>In scope of this release we <a href="https://redirect.github.com/actions/setup-dotnet/pull/320">add support for Windows-arm</a>. Besides, we change getInput to <a href="https://redirect.github.com/actions/setup-dotnet/pull/250">getBooleanInput</a> for include-prerelease.</p> <h2>Package updates, support for global json file in a subdirectory, installer scripts updates</h2> <p>This release includes the following PRs:</p> <ul> <li>Adding support for the <code>global-json-file</code> input: <a href="https://redirect.github.com/actions/setup-dotnet/issues/276">#276</a> Example of usage: <pre lang="yaml"><code>- uses: actions/setup-dotnet@v2 with: global-json-file: csharp/global.json - run: dotnet build <my project> working-directory: csharp </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/setup-dotnet/commit/3447fd6a9f9e57506b15f895c5b76d3b197dc7c2"><code>3447fd6</code></a> feat: Cache NuGet global-packages folder (<a href="https://redirect.github.com/actions/setup-dotnet/issues/303">#303</a>)</li> <li><a href="https://github.com/actions/setup-dotnet/commit/916351aac9bf8880c972d4fea274ab5e747d8f36"><code>916351a</code></a> Merge pull request <a href="https://redirect.github.com/actions/setup-dotnet/issues/430">#430</a> from akv-platform/remove-implicit-dependencies</li> <li><a href="https://github.com/actions/setup-dotnet/commit/1ad2e312fa930dd816b1da9195e158074b9ddd0b"><code>1ad2e31</code></a> Add missing dependency</li> <li><a href="https://github.com/actions/setup-dotnet/commit/e3f84b8f7a3f438e501d96444e950f5db0a609c6"><code>e3f84b8</code></a> Install eslint-plugin-node</li> <li><a href="https://github.com/actions/setup-dotnet/commit/ba848a34bbdefdb860a6d759e2fda6e0f6f4f2f1"><code>ba848a3</code></a> Update configuration files</li> <li><a href="https://github.com/actions/setup-dotnet/commit/aa983c550dfda0d1722b6ac6aed55724ffacc6d3"><code>aa983c5</code></a> Merge pull request <a href="https://redirect.github.com/actions/setup-dotnet/issues/428">#428</a> from akv-platform/add-latest-patch-syntax</li> <li><a href="https://github.com/actions/setup-dotnet/commit/b891376106304fa06a2b5838bbd9a2e2d1fc8176"><code>b891376</code></a> Merge branch 'main' into add-latest-patch-syntax</li> <li><a href="https://github.com/actions/setup-dotnet/commit/b05a3f26b3adff9936a0ef8b806a7d9a57b72a6d"><code>b05a3f2</code></a> Fix review points, rebuild solution</li> <li><a href="https://github.com/actions/setup-dotnet/commit/5fdecd2063d6b33f52291b3d9299f6a7d4a84964"><code>5fdecd2</code></a> Increase amount of retries for Dotnet installation scripts tests (<a href="https://redirect.github.com/actions/setup-dotnet/issues/427">#427</a>)</li> <li><a href="https://github.com/actions/setup-dotnet/commit/38b49fb7178824be5cb7b9acd01eb2627e719a0b"><code>38b49fb</code></a> Fix informational and debug messages</li> <li>Additional commits viewable in <a href="https://github.com/actions/setup-dotnet/compare/v1...v3">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
kb0039
pushed a commit
to aaronba/chat-copilot
that referenced
this pull request
Jan 8, 2025
Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 1 to 3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/setup-dotnet/releases">actions/setup-dotnet's releases</a>.</em></p> <blockquote> <h2>v3.0.0</h2> <p>This major release includes the following <strong>changes:</strong></p> <ul> <li><a href="https://redirect.github.com/actions/setup-dotnet/issues/219">#219</a> New input <code>dotnet-quality</code> was added in <a href="https://redirect.github.com/actions/setup-dotnet/pull/315">#315</a>:</li> </ul> <pre lang="yaml"><code> - uses: actions/setup-dotnet@v3 with: dotnet-version: '6.0.x' dotnet-quality: 'preview' - run: dotnet build <my project> </code></pre> <p>More in detail <a href="https://github.com/actions/setup-dotnet#using-the-dotnet-quality-input">here</a>.</p> <ul> <li><a href="https://redirect.github.com/actions/setup-dotnet/issues/241">#241</a> The output variable <code>dotnet-version</code> which contains the installed by the action SDK version was added in <a href="https://redirect.github.com/actions/setup-dotnet/pull/324">#324</a>:</li> </ul> <pre lang="yaml"><code> - uses: actions/setup-dotnet@v3 id: cp310 with: dotnet-version: '3.1.422' - run: echo '${{ steps.cp310.outputs.dotnet-version }}' # outputs 3.1.422 </code></pre> <p>More in detail <a href="https://github.com/actions/setup-dotnet/tree/main#dotnet-version">here</a>.</p> <ul> <li>The <code>dotnet-version</code> syntax was updated and now it allows to specify the prerelease version without using <code>include-prerelease</code> input. The <code>include-prerelease</code> input was cut out:</li> </ul> <pre lang="yaml"><code> - uses: actions/setup-dotnet@v3 with: dotnet-version: '5.0.0-preview.6' </code></pre> <p>More in detail <a href="https://github.com/actions/setup-dotnet#supported-version-syntax">here</a>.</p> <ul> <li><a href="https://redirect.github.com/actions/setup-dotnet/issues/251">#251</a> The problem with out of support .NET version warnings was solved in <a href="https://redirect.github.com/actions/setup-dotnet/pull/315">#315</a>.</li> </ul> <p><strong>Breaking changes</strong>:</p> <ul> <li>Installation paths for Windows and Ubuntu images were changed to match the location of pre-installed SDKs. In more detail, read <a href="https://github.com/actions/setup-dotnet/blob/main/docs/adrs/v3-setup-dotnet.md#breaking-changes">here</a>.</li> </ul> <h2>Add support for Windows-arm</h2> <p>In scope of this release we <a href="https://redirect.github.com/actions/setup-dotnet/pull/320">add support for Windows-arm</a>. Besides, we change getInput to <a href="https://redirect.github.com/actions/setup-dotnet/pull/250">getBooleanInput</a> for include-prerelease.</p> <h2>Package updates, support for global json file in a subdirectory, installer scripts updates</h2> <p>This release includes the following PRs:</p> <ul> <li>Adding support for the <code>global-json-file</code> input: <a href="https://redirect.github.com/actions/setup-dotnet/issues/276">#276</a> Example of usage: <pre lang="yaml"><code>- uses: actions/setup-dotnet@v2 with: global-json-file: csharp/global.json - run: dotnet build <my project> working-directory: csharp </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/setup-dotnet/commit/3447fd6a9f9e57506b15f895c5b76d3b197dc7c2"><code>3447fd6</code></a> feat: Cache NuGet global-packages folder (<a href="https://redirect.github.com/actions/setup-dotnet/issues/303">#303</a>)</li> <li><a href="https://github.com/actions/setup-dotnet/commit/916351aac9bf8880c972d4fea274ab5e747d8f36"><code>916351a</code></a> Merge pull request <a href="https://redirect.github.com/actions/setup-dotnet/issues/430">#430</a> from akv-platform/remove-implicit-dependencies</li> <li><a href="https://github.com/actions/setup-dotnet/commit/1ad2e312fa930dd816b1da9195e158074b9ddd0b"><code>1ad2e31</code></a> Add missing dependency</li> <li><a href="https://github.com/actions/setup-dotnet/commit/e3f84b8f7a3f438e501d96444e950f5db0a609c6"><code>e3f84b8</code></a> Install eslint-plugin-node</li> <li><a href="https://github.com/actions/setup-dotnet/commit/ba848a34bbdefdb860a6d759e2fda6e0f6f4f2f1"><code>ba848a3</code></a> Update configuration files</li> <li><a href="https://github.com/actions/setup-dotnet/commit/aa983c550dfda0d1722b6ac6aed55724ffacc6d3"><code>aa983c5</code></a> Merge pull request <a href="https://redirect.github.com/actions/setup-dotnet/issues/428">#428</a> from akv-platform/add-latest-patch-syntax</li> <li><a href="https://github.com/actions/setup-dotnet/commit/b891376106304fa06a2b5838bbd9a2e2d1fc8176"><code>b891376</code></a> Merge branch 'main' into add-latest-patch-syntax</li> <li><a href="https://github.com/actions/setup-dotnet/commit/b05a3f26b3adff9936a0ef8b806a7d9a57b72a6d"><code>b05a3f2</code></a> Fix review points, rebuild solution</li> <li><a href="https://github.com/actions/setup-dotnet/commit/5fdecd2063d6b33f52291b3d9299f6a7d4a84964"><code>5fdecd2</code></a> Increase amount of retries for Dotnet installation scripts tests (<a href="https://redirect.github.com/actions/setup-dotnet/issues/427">#427</a>)</li> <li><a href="https://github.com/actions/setup-dotnet/commit/38b49fb7178824be5cb7b9acd01eb2627e719a0b"><code>38b49fb</code></a> Fix informational and debug messages</li> <li>Additional commits viewable in <a href="https://github.com/actions/setup-dotnet/compare/v1...v3">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
jdtoombs
pushed a commit
to jdtoombs/chat-copilot
that referenced
this pull request
Apr 10, 2025
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps actions/setup-dotnet from 1 to 3.
Release notes
Sourced from actions/setup-dotnet's releases.
... (truncated)
Commits
3447fd6feat: Cache NuGet global-packages folder (#303)916351aMerge pull request #430 from akv-platform/remove-implicit-dependencies1ad2e31Add missing dependencye3f84b8Install eslint-plugin-nodeba848a3Update configuration filesaa983c5Merge pull request #428 from akv-platform/add-latest-patch-syntaxb891376Merge branch 'main' into add-latest-patch-syntaxb05a3f2Fix review points, rebuild solution5fdecd2Increase amount of retries for Dotnet installation scripts tests (#427)38b49fbFix informational and debug messagesDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)