From f1eff13ef9f33e097f154c9bb6d2fe7988b95d80 Mon Sep 17 00:00:00 2001 From: BoxBoxJason Date: Fri, 17 Jul 2026 00:25:41 +0200 Subject: [PATCH] chore(deps): upgrade ginkgo to 2.32.0 Signed-off-by: BoxBoxJason --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 39e1706..406ff12 100644 --- a/Makefile +++ b/Makefile @@ -49,12 +49,12 @@ coverage: # Run integration tests e2e: setup.sonar - @command -v ginkgo >/dev/null 2>&1 || { echo "Installing ginkgo..."; go install github.com/onsi/ginkgo/v2/ginkgo@v2.30.0; } + @command -v ginkgo >/dev/null 2>&1 || { echo "Installing ginkgo..."; go install github.com/onsi/ginkgo/v2/ginkgo@v2.32.0; } SONAR_TOKEN= SONAR_URL=${endpoint} SONAR_USERNAME=${username} SONAR_PASSWORD=${password} ginkgo -r integration_testing # Run enterprise edition integration tests e2e.enterprise: setup.sonar.enterprise - @command -v ginkgo >/dev/null 2>&1 || { echo "Installing ginkgo..."; go install github.com/onsi/ginkgo/v2/ginkgo@v2.30.0; } + @command -v ginkgo >/dev/null 2>&1 || { echo "Installing ginkgo..."; go install github.com/onsi/ginkgo/v2/ginkgo@v2.32.0; } SONAR_TOKEN= SONAR_URL=${enterprise_endpoint} SONAR_USERNAME=${username} SONAR_PASSWORD=${password} ginkgo -r integration_testing # Build the CLI binary to ./bin/sonar-cli.