From 66e3b392dc598e93f3ec0a3399cdaddb6c35bee8 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Tue, 12 May 2026 10:39:48 +0200 Subject: [PATCH] feat: use fixed versions --- .woodpecker/build.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index 4ecf018..b1a1a81 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -11,9 +11,12 @@ steps: image: "cr.simoncor.net/quay/buildah/stable:latest" privileged: true commands: - - | - VERSION=$(grep -oP '(?<=yamllint==)[0-9.]+' Dockerfile.linux.amd64) - echo "Building yamllint version ${VERSION}" - buildah bud -t yamllint -f Dockerfile.linux.amd64 . - buildah tag yamllint cr.simoncor.net/yamllint:${VERSION} - buildah push cr.simoncor.net/yamllint:${VERSION} + + # build yamllint container + - "buildah bud -t yamllint -f Dockerfile.linux.amd64 ." + + # renovate: datasource=pypi depName=yamllint + - "buildah tag yamllint cr.simoncor.net/yamllint:1.38.0" + + # renovate: datasource=pypi depName=yamllint + - "buildah push cr.simoncor.net/yamllint:1.38.0"