From 56b2a2c97ad574b9c97999ff13968b15c56752fa Mon Sep 17 00:00:00 2001 From: Gandalf Date: Fri, 12 Dec 2025 20:13:40 +0100 Subject: [PATCH] Bump common-ci-configuration to latest main commit Update CI_COMMON_JOB_VERSION and include ref from e74d7109... to 9f5e12cd984bf12746ce9af081868e09ced8068f. The old docker-dind image (e74d7109...) was deleted from the GitLab registry, causing CI jobs to fail with "manifest unknown" errors on runners without cached images. The new version uses images that exist in the registry. This is a proper fix replacing the workaround of adding data-cache-storage tags to restrict jobs to runners with cached images. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b9efe18b3..5b88224f4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,7 @@ stages: variables: # Variables required by Common CI jobs - CI_COMMON_JOB_VERSION: 'e74d7109838ff05fdc239bced6a726aa7ad46a9b' + CI_COMMON_JOB_VERSION: '9f5e12cd984bf12746ce9af081868e09ced8068f' DOCKER_BUILDER_TAG: '$CI_COMMON_JOB_VERSION' DOCKER_DIND_TAG: '$CI_COMMON_JOB_VERSION' IMAGE_REMOVER_TAG: '$CI_COMMON_JOB_VERSION' @@ -50,7 +50,7 @@ variables: include: - template: Workflows/Branch-Pipelines.gitlab-ci.yml - project: 'hive/common-ci-configuration' - ref: e74d7109838ff05fdc239bced6a726aa7ad46a9b # develop + ref: 9f5e12cd984bf12746ce9af081868e09ced8068f # main file: - '/templates/docker_image_jobs.gitlab-ci.yml' - '/templates/cache_cleanup.gitlab-ci.yml' -- GitLab