From 344211c8263e5cfb8890ffc2a913398b1ca6942a Mon Sep 17 00:00:00 2001 From: Sergey Mishin Date: Mon, 17 Nov 2025 14:53:50 +0100 Subject: [PATCH] ci: Set Docker API version explicitly Apparently Docker Engine v29 broke some compatibility with testcontainers, but setting this var should work. --- .github/workflows/blazar.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/blazar.yml b/.github/workflows/blazar.yml index d11dfa3..c41e85e 100644 --- a/.github/workflows/blazar.yml +++ b/.github/workflows/blazar.yml @@ -30,6 +30,8 @@ jobs: go-version: '1.22.8' - name: Build and test + env: + DOCKER_API_VERSION: "1.41" run: | make test