diff --git a/tests/oidc-guard-tests/EndToEnd/Helm.cs b/tests/oidc-guard-tests/EndToEnd/Helm.cs index 0454fb1..65303cb 100644 --- a/tests/oidc-guard-tests/EndToEnd/Helm.cs +++ b/tests/oidc-guard-tests/EndToEnd/Helm.cs @@ -8,7 +8,7 @@ namespace oidc_guard_tests.EndToEnd { public class Helm { - private const string Version = "3.12.3"; + private const string Version = "3.13.1"; public static string FileName { get; } = "helm" + (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? ".exe" : ""); @@ -51,7 +51,7 @@ public static async Task DownloadClient() if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { await Cli.Wrap("chmod") - .WithArguments("+x ./helm") + .WithArguments("+x ./" + FileName) .ExecuteAsync(); } } diff --git a/tests/oidc-guard-tests/EndToEnd/Kind.cs b/tests/oidc-guard-tests/EndToEnd/Kind.cs index 88e8821..6207fd0 100644 --- a/tests/oidc-guard-tests/EndToEnd/Kind.cs +++ b/tests/oidc-guard-tests/EndToEnd/Kind.cs @@ -47,7 +47,7 @@ public static async Task DownloadClient() if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { await Cli.Wrap("chmod") - .WithArguments("+x ./kind") + .WithArguments("+x ./" + FileName) .ExecuteAsync(); } }