From 969ed1d8083fbf5e472fdf5eb2ce32b7624dc1a0 Mon Sep 17 00:00:00 2001 From: Frederic Leger Date: Tue, 14 Jan 2025 15:19:22 +0100 Subject: [PATCH] ci: fix clean PR image tags --- .github/workflows/pull-request-clean.yml | 2 +- images/ci-helm/Dockerfile | 2 ++ images/mydumper/Dockerfile | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-clean.yml b/.github/workflows/pull-request-clean.yml index 4f76eaf..1f0785c 100644 --- a/.github/workflows/pull-request-clean.yml +++ b/.github/workflows/pull-request-clean.yml @@ -24,6 +24,6 @@ jobs: matrix: image: ${{ fromJson(needs.get-available-images-matrix.outputs.images-matrix) }} steps: - - uses: hoverkraft-tech/ci-github-container/actions/docker/prune-pull-requests-image-tags@v0.9.2 + - uses: hoverkraft-tech/ci-github-container/actions/docker/prune-pull-requests-image-tags@0.19.0 with: image: ${{ matrix.image }} diff --git a/images/ci-helm/Dockerfile b/images/ci-helm/Dockerfile index 0d985c1..81675e2 100644 --- a/images/ci-helm/Dockerfile +++ b/images/ci-helm/Dockerfile @@ -1,6 +1,8 @@ ARG version=v3.12.0 FROM quay.io/helmpack/chart-testing:${version} +LABEL org.opencontainers.image.source = "https://github.com/hoverkraft-tech/docker-base-images" + # we can probably ignore warning about versions of such packages # hadolint ignore=DL3018 RUN apk add --no-cache jq yq curl openssl git diff --git a/images/mydumper/Dockerfile b/images/mydumper/Dockerfile index 2d3b75e..5598176 100644 --- a/images/mydumper/Dockerfile +++ b/images/mydumper/Dockerfile @@ -1,5 +1,7 @@ FROM ubuntu:jammy +LABEL org.opencontainers.image.source = "https://github.com/hoverkraft-tech/docker-base-images" + ENV DEBIAN_FRONTEND=noninteractive \ TZ=UTC \ MYSQL_HOST=mysql \