From 28b125837ba3d6d0f7f6ec199a9f5fb10925e644 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Rod=C3=A1k?= Date: Wed, 19 Nov 2025 13:40:11 +0100 Subject: [PATCH] Add --network=host to validatepr container for GitHub access MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allows the validatepr container to fetch dependencies from GitHub during validation by enabling host networking. Signed-off-by: Jan Rodák --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f2387d3df2..7e1f1f011b 100644 --- a/Makefile +++ b/Makefile @@ -335,6 +335,7 @@ validatepr: ## Go Format and lint, which all code changes must pass $(PODMANCMD) run --rm \ -v $(CURDIR):/go/src/github.com/containers/podman \ --security-opt label=disable \ + --network=host \ -it \ -w /go/src/github.com/containers/podman \ quay.io/libpod/validatepr:latest \