From 0e5b5a7de4933c49df2c358f13b5729a4fe6fc51 Mon Sep 17 00:00:00 2001 From: "IETM_FIXE\\ietm6" Date: Fri, 24 Apr 2026 07:30:20 +0200 Subject: [PATCH] =?UTF-8?q?Correction=20d'une=20d=C3=A9pendance=20go?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- demo/orchestrator/go.mod | 3 +++ 1 file changed, 3 insertions(+) diff --git a/demo/orchestrator/go.mod b/demo/orchestrator/go.mod index e0d607f..4c92601 100644 --- a/demo/orchestrator/go.mod +++ b/demo/orchestrator/go.mod @@ -4,5 +4,8 @@ go 1.23 require ( github.com/docker/docker v27.3.1+incompatible + // docker/docker v27.3.1 appelle sockets.DialPipe qui n'existe plus dans + // go-connections >= 0.6.0. Pin a 0.5.0 pour eviter le build break. + github.com/docker/go-connections v0.5.0 github.com/google/uuid v1.6.0 )