diff --git a/build/common/Utilities/DockerContextExtensions.cs b/build/common/Utilities/DockerContextExtensions.cs index 4252b7a0d5..7486ee701e 100644 --- a/build/common/Utilities/DockerContextExtensions.cs +++ b/build/common/Utilities/DockerContextExtensions.cs @@ -13,7 +13,7 @@ public static bool SkipImage(this ICakeContext context, DockerImage dockerImage) { var (distro, targetFramework, architecture, _, _) = dockerImage; - if (architecture != Architecture.Arm64) return false; + if (architecture == Architecture.Amd64) return false; if (!Constants.DistrosToSkip.Contains(distro)) return false; context.Information($"Skipping Target: {targetFramework}, Distro: {distro}, Arch: {architecture}"); diff --git a/build/common/Utilities/Tools.cs b/build/common/Utilities/Tools.cs index 62ea1268b1..47252238b3 100644 --- a/build/common/Utilities/Tools.cs +++ b/build/common/Utilities/Tools.cs @@ -6,6 +6,6 @@ public class Tools public static readonly Dictionary Versions = new() { - { NugetCmd, "6.1.0" }, + { NugetCmd, "6.3.1" }, }; } diff --git a/dotnet-tools.json b/dotnet-tools.json index 4c6f94aa79..09789d57a2 100644 --- a/dotnet-tools.json +++ b/dotnet-tools.json @@ -9,7 +9,7 @@ ] }, "gitversion.tool": { - "version": "5.10.1", + "version": "5.10.3", "commands": [ "dotnet-gitversion" ] @@ -21,7 +21,7 @@ ] }, "Wyam2.Tool": { - "version": "3.0.0-rc3", + "version": "3.0.0", "commands": [ "wyam2" ]