From a854b4875560d6b55c8bad98a208bbbb31813b03 Mon Sep 17 00:00:00 2001 From: Szabolcs Toth <54896607+tothszabi@users.noreply.github.com> Date: Wed, 13 Nov 2024 09:31:15 +0100 Subject: [PATCH] Update version (#1021) * Update version * Update slice assertion --- models/models_methods_test.go | 2 +- version/build.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/models/models_methods_test.go b/models/models_methods_test.go index b95001cb..303196ce 100644 --- a/models/models_methods_test.go +++ b/models/models_methods_test.go @@ -660,7 +660,7 @@ workflows: warns, err := config.Validate() if len(tt.wantWarns) > 0 { - require.Equal(t, tt.wantWarns, warns) + require.ElementsMatch(t, tt.wantWarns, warns) } else { require.Empty(t, warns) } diff --git a/version/build.go b/version/build.go index 32c72dd5..0d150e8e 100644 --- a/version/build.go +++ b/version/build.go @@ -1,7 +1,7 @@ package version // VERSION is the main CLI version number. It's defined at build time using -ldflags -var VERSION = "2.24.2" +var VERSION = "2.24.3" // BuildNumber is the CI build number that creates the release. It's defined at build time using -ldflags var BuildNumber = ""