From 00e47d2921fe6bbaa9df85068e0f3c9b0f449ba1 Mon Sep 17 00:00:00 2001 From: Rafaela Soares Date: Wed, 17 Dec 2025 18:38:30 +0000 Subject: [PATCH 1/2] SANDBOX-1465: update kube & openshift dependencies to 4.20 --- prepare-tools-action/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/prepare-tools-action/action.yml b/prepare-tools-action/action.yml index 4e256f9..659c4a1 100644 --- a/prepare-tools-action/action.yml +++ b/prepare-tools-action/action.yml @@ -4,12 +4,12 @@ inputs: operator-sdk-version: description: Version of operator-sdk binary required: false - default: v1.40.0 + default: v1.42.0 operator-registry: description: Version of operator registry required: false - # see https://github.com/operator-framework/operator-sdk/blob/v1.40.0/go.mod#L20 - default: v1.55.0 + # see https://github.com/operator-framework/operator-sdk/blob/v1.42.0/go.mod#L20 + default: v1.59.0 runs: using: "composite" steps: From 34118e95323379ed1d6d902a9eed7493a80c2eb3 Mon Sep 17 00:00:00 2001 From: Rafaela Soares Date: Wed, 17 Dec 2025 18:39:25 +0000 Subject: [PATCH 2/2] update --- govulncheck-action/Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/govulncheck-action/Containerfile b/govulncheck-action/Containerfile index 871c394..9d2366f 100644 --- a/govulncheck-action/Containerfile +++ b/govulncheck-action/Containerfile @@ -12,10 +12,10 @@ ENV GOTOOLCHAIN=auto RUN echo "Building govulncheckx binary for $GOOS/$GOARCH" RUN GOOS=$GOOS GOARCH=$GOARCH go build -v -o govulncheckx main.go -FROM golang:1.23.0 +FROM golang:1.24.0 # using a fresh golang image without the `WORKDIR` from the builder stage # see https://docs.github.com/en/actions/reference/workflows-and-actions/dockerfile-support#workdir -# using golang 1.23.0 since most of our projects are still using it (and toolchain will not downgrade the version of go) +# using golang 1.24.0 since most of our projects are still using it (and toolchain will not downgrade the version of go) # copy the binary from the builder stage COPY --from=builder /usr/src/app/govulncheckx /usr/local/bin/govulncheckx