16 Commits

Author SHA1 Message Date
d471ebd82b chore(deps): update dependency adrienverge/yamllint to v1.36.2
All checks were successful
continuous-integration/drone/tag Build is passing
2025-04-02 21:48:26 +02:00
ccb7f8648a chore(deps): update dependency adrienverge/yamllint to v1.36.1
All checks were successful
continuous-integration/drone/tag Build is passing
2025-04-02 21:48:22 +02:00
b2d0b1afa5 chore(deps): update dependency adrienverge/yamllint to v1.36.0
All checks were successful
continuous-integration/drone/tag Build is passing
2025-04-02 21:48:18 +02:00
4d6a42376e chore(deps): update dependency adrienverge/yamllint to v1.35.1
All checks were successful
continuous-integration/drone/tag Build is passing
2025-04-02 21:48:15 +02:00
3e0b6db034 chore(deps): update dependency adrienverge/yamllint to v1.35.0
All checks were successful
continuous-integration/drone/tag Build is passing
2025-04-02 21:48:10 +02:00
d213586484 chore(deps): update dependency adrienverge/yamllint to v1.34.0
All checks were successful
continuous-integration/drone/tag Build is passing
2025-04-02 21:48:07 +02:00
9710d3d75a chore(deps): update dependency adrienverge/yamllint to v1.33.0
All checks were successful
continuous-integration/drone/tag Build is passing
2025-04-02 21:48:04 +02:00
955bce963c chore(deps): update dependency adrienverge/yamllint to v1.32.0
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing
2025-04-02 21:44:07 +02:00
01f334cb27 chore(deps): update dependency adrienverge/yamllint to v1.31.0
All checks were successful
continuous-integration/drone/tag Build is passing
2025-04-02 21:37:53 +02:00
c0013168af chore(ci): use upstream container image registry
All checks were successful
continuous-integration/drone/push Build is passing
2025-04-02 21:32:53 +02:00
9416db9aab chore(deps): update dependency adrienverge/yamllint to v1.30.0
Some checks failed
continuous-integration/drone/tag Build is failing
continuous-integration/drone/push Build is failing
2025-04-02 10:49:44 +02:00
ea8855db1e chore(ci): rollback plugins/docker to 20.18.6
Some checks failed
continuous-integration/drone/push Build is failing
2025-04-02 10:47:42 +02:00
e801b3bbf1 chore(ci): use container image mirror 2025-04-02 10:47:42 +02:00
8da5d3ffd7 chore(deps): update container images 2025-04-02 10:47:42 +02:00
05d65f9a8c fix(Dockerfile): use python venv
Some checks failed
continuous-integration/drone/push Build is failing
2025-04-01 22:03:54 +02:00
bf90bd6727 fix(Makefile): make FQIN configurable
Some checks failed
continuous-integration/drone/push Build is failing
2025-04-01 20:46:37 +02:00
3 changed files with 16 additions and 13 deletions

View File

@ -69,7 +69,7 @@ steps:
image: git.cryptic.systems/volker.raschek/git:1.4.0
- name: build
image: docker.io/plugins/docker:20.18.8
image: docker.io/plugins/docker:20.18.6
settings:
auto_tag: false
dockerfile: Dockerfile
@ -135,7 +135,7 @@ steps:
image: git.cryptic.systems/volker.raschek/git:1.4.0
- name: build
image: docker.io/plugins/docker:20.18.8
image: docker.io/plugins/docker:20.18.6
settings:
auto_tag: false
dockerfile: Dockerfile
@ -201,7 +201,7 @@ steps:
image: git.cryptic.systems/volker.raschek/git:1.4.0
- name: build
image: docker.io/plugins/docker:20.18.8
image: docker.io/plugins/docker:20.18.6
settings:
auto_tag: false
dockerfile: Dockerfile
@ -265,7 +265,7 @@ steps:
image: git.cryptic.systems/volker.raschek/git:1.4.0
- name: build
image: docker.io/plugins/docker:20.18.8
image: docker.io/plugins/docker:20.18.6
settings:
auto_tag: false
dockerfile: Dockerfile
@ -449,7 +449,7 @@ steps:
image: git.cryptic.systems/volker.raschek/git:1.4.0
- name: build
image: docker.io/plugins/docker:20.18.8
image: docker.io/plugins/docker:20.18.6
settings:
auto_tag: true
auto_tag_suffix: amd64
@ -509,7 +509,7 @@ steps:
image: git.cryptic.systems/volker.raschek/git:1.4.0
- name: build
image: docker.io/plugins/docker:20.18.8
image: docker.io/plugins/docker:20.18.6
settings:
auto_tag: true
auto_tag_suffix: arm64-v8

View File

@ -1,4 +1,4 @@
FROM docker.io/library/alpine:3.21.3 AS build
FROM docker.io/library/python:3.13.2-alpine AS build
ARG YAMLLINT_VERSION=master
@ -8,9 +8,12 @@ RUN set -ex && \
apk add git python3 py-pip
RUN git clone --branch ${YAMLLINT_VERSION} https://github.com/adrienverge/yamllint /tmp/yamllint && \
python3 -m pip install /tmp/yamllint && \
rm -rf /tmp/yamllint
python3 -m venv /venv && \
/venv/bin/pip3 install /tmp/yamllint && \
rm -r -f /tmp/yamllint
ENV PATH="/venv/bin:${PATH}"
WORKDIR /workspace
ENTRYPOINT [ "/usr/bin/yamllint" ]
ENTRYPOINT [ "yamllint" ]

View File

@ -1,6 +1,6 @@
# YAMLLINT_VERSION
# Only required to install a specifiy version
YAMLLINT_VERSION?=v1.28.0 # renovate: datasource=github-releases depName=adrienverge/yamllint
YAMLLINT_VERSION?=v1.36.2 # renovate: datasource=github-releases depName=adrienverge/yamllint
# CONTAINER_RUNTIME
# The CONTAINER_RUNTIME variable will be used to specified the path to a
@ -9,8 +9,8 @@ CONTAINER_RUNTIME?=$(shell which podman)
# YAMLLINT_IMAGE_REGISTRY_NAME
# Defines the name of the new container to be built using several variables.
YAMLLINT_IMAGE_REGISTRY_NAME:=git.cryptic.systems
YAMLLINT_IMAGE_REGISTRY_USER:=volker.raschek
YAMLLINT_IMAGE_REGISTRY_NAME?=git.cryptic.systems
YAMLLINT_IMAGE_REGISTRY_USER?=volker.raschek
YAMLLINT_IMAGE_NAMESPACE?=${YAMLLINT_IMAGE_REGISTRY_USER}
YAMLLINT_IMAGE_NAME:=yamllint