Skip to content

Commit f6a28fe

Browse files
committed
bump ginkgo to 2-15-0
1 parent 711c705 commit f6a28fe

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

build/run-in-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ if [[ "$DOCKER_IN_DOCKER_ENABLED" == "true" ]]; then
8787
echo "..reached DIND check TRUE block, inside run-in-docker.sh"
8888
echo "FLAGS=$FLAGS"
8989
#go env
90-
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo@v2.14.0
90+
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo@v2.15.0
9191
find / -type f -name ginkgo 2>/dev/null
9292
which ginkgo
9393
/bin/bash -c "${FLAGS}"

images/test-runner/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ image:
5454
--build-arg YAML_LINT_VERSION=1.33.0 \
5555
--build-arg YAMALE_VERSION=4.0.4 \
5656
--build-arg HELM_VERSION=3.11.2 \
57-
--build-arg GINKGO_VERSION=2.14.0 \
57+
--build-arg GINKGO_VERSION=2.15.0 \
5858
--build-arg GOLINT_VERSION=latest \
5959
-t ${IMAGE}:${TAG} rootfs
6060

@@ -75,7 +75,7 @@ build: ensure-buildx
7575
--build-arg YAML_LINT_VERSION=1.33.0 \
7676
--build-arg YAMALE_VERSION=4.0.4 \
7777
--build-arg HELM_VERSION=3.11.2 \
78-
--build-arg GINKGO_VERSION=2.14.0 \
78+
--build-arg GINKGO_VERSION=2.15.0 \
7979
--build-arg GOLINT_VERSION=latest \
8080
-t ${IMAGE}:${TAG} rootfs
8181

test/e2e/run-chart-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fi
7878

7979
if [ "${SKIP_IMAGE_CREATION:-false}" = "false" ]; then
8080
if ! command -v ginkgo &> /dev/null; then
81-
go install github.com/onsi/ginkgo/v2/ginkgo@v2.14.0
81+
go install github.com/onsi/ginkgo/v2/ginkgo@v2.15.0
8282
fi
8383
echo "[dev-env] building image"
8484
make -C ${DIR}/../../ clean-image build image

test/e2e/run-kind-e2e.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ fi
9696

9797
if [ "${SKIP_E2E_IMAGE_CREATION}" = "false" ]; then
9898
if ! command -v ginkgo &> /dev/null; then
99-
go install github.com/onsi/ginkgo/v2/ginkgo@v2.14.0
99+
go install github.com/onsi/ginkgo/v2/ginkgo@v2.15.0
100100
fi
101101

102102
echo "[dev-env] .. done building controller images"

0 commit comments

Comments
 (0)