From 27ce1d117c88436e559eba8b7ce4ae32c0155f25 Mon Sep 17 00:00:00 2001 From: Alina Kladieva Date: Thu, 30 Jan 2025 00:42:36 +0100 Subject: [PATCH] Disable docker cache to check full images rebuild Signed-off-by: Alina Kladieva --- .github/actions/handle_docker/images_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/handle_docker/images_api.py b/.github/actions/handle_docker/images_api.py index 93419519b7f4f9..72c7d124e6a124 100644 --- a/.github/actions/handle_docker/images_api.py +++ b/.github/actions/handle_docker/images_api.py @@ -122,7 +122,7 @@ def get_missing(self, image_names: Iterable = None, base: bool = False) -> list: return missing_images def build(self, image_names: Iterable = None, missing_only: bool = False, push: bool = True, builder: str = None, - import_cache: bool = True, export_cache: bool = True): + import_cache: bool = False, export_cache: bool = False): to_build = self.get(self.get_missing(image_names)) if missing_only else self.get(image_names) for image in to_build: image.build(self.dry_run, push, builder, import_cache, export_cache)