Bump Nuke.Common from 6.2.1 to 6.3.0 in /build (#1837)

* Bump Nuke.Common from 6.2.1 to 6.3.0 in /build

Bumps [Nuke.Common](https://github.com/nuke-build/nuke) from 6.2.1 to 6.3.0.
- [Release notes](https://github.com/nuke-build/nuke/releases)
- [Changelog](https://github.com/nuke-build/nuke/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/nuke-build/nuke/compare/6.2.1...6.3.0)

---
updated-dependencies:
- dependency-name: Nuke.Common
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump nuke.globaltool to 6.3.0

* Nuke breaking change - now we can have only one OnlyWhen condition

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Piotr Kiełkowicz <pkiekowicz@splunk.com>
Co-authored-by: Paulo Janotti <pjanotti@splunk.com>
This commit is contained in:
dependabot[bot] 2022-12-20 09:54:28 -08:00 committed by GitHub
parent eab97a0343
commit 47a786d2a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View File

@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"nuke.globaltool": {
"version": "6.2.1",
"version": "6.3.0",
"commands": [
"nuke"
]

View File

@ -97,8 +97,7 @@ partial class Build
Target PublishIisTestApplications => _ => _
.Unlisted()
.After(CompileManagedTests)
.OnlyWhenStatic(() => IsWin)
.OnlyWhenStatic(() => Containers == ContainersWindows)
.OnlyWhenStatic(() => IsWin && Containers == ContainersWindows)
.Executes(() =>
{
var aspNetProject = TestsDirectory / "test-applications" / "integrations" / "TestApplication.AspNet" / "TestApplication.AspNet.csproj";

View File

@ -11,7 +11,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nuke.Common" Version="6.2.1" />
<PackageReference Include="Nuke.Common" Version="6.3.0" />
<PackageReference Include="Nuget.CommandLine" Version="6.3.1" ExcludeAssets="all" />
</ItemGroup>