From 4a5ea3a8adf49b47b9399306ef5e6ac775abb1b4 Mon Sep 17 00:00:00 2001 From: Alejandro Gullon Date: Fri, 24 Jul 2026 13:18:47 +0200 Subject: [PATCH 1/2] Release testing for 4.22.7 pre-commit.check-secrets: ENABLED From 332af6601a50b917a4ddd745135852365755677e Mon Sep 17 00:00:00 2001 From: Alejandro Gullon Date: Mon, 27 Jul 2026 12:07:00 +0200 Subject: [PATCH 2/2] fix: pin origin to known-good commit in openshift-tests-private build The openshift-tests-private Makefile runs 'go get -u @main' which fetches the latest openshift/origin commit. After the bump(k8s) on Jul 24 2026, origin pulled in opencontainers/cgroups v0.0.6 which changed PidsLimit from int64 to *int64, breaking the pinned openshift/kubernetes code that expects the old type. Pin origin to the last known-good commit (398edca0cfe4) before the incompatible dependency bump. Co-Authored-By: Claude Opus 4.6 (1M context) pre-commit.check-secrets: ENABLED --- scripts/fetch_tools.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/fetch_tools.sh b/scripts/fetch_tools.sh index 377c093591..9594a33ea5 100755 --- a/scripts/fetch_tools.sh +++ b/scripts/fetch_tools.sh @@ -328,6 +328,12 @@ gettool_ginkgo() { return 1 fi + # Workaround: pin origin to known-good commit to avoid cgroups/kubernetes + # type mismatch caused by openshift/origin bump(k8s) on Jul 24 2026. + # The Makefile runs 'go get -u github.com/openshift/origin@main' which + # pulls in incompatible dependency versions. Pin to last working commit. + sed -i 's|@main|@398edca0cfe4|g' Makefile + # Build the binary make all