From 305ff39823397a079f3410919fe8351a779c4ca1 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Wed, 8 Nov 2023 17:15:12 +0100 Subject: [PATCH] [Dockerfile] Fixed yamllint version variable --- Dockerfile.linux.amd64 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.linux.amd64 b/Dockerfile.linux.amd64 index 82f507c..9889b64 100644 --- a/Dockerfile.linux.amd64 +++ b/Dockerfile.linux.amd64 @@ -8,7 +8,7 @@ ENV ANSIBLE_VERSION=2.13.11 ENV ANSIBLE_LINT_VERSION=6.22.0 # renovate: datasource=pypi depName=yamllint versioning=pep440 -ENV YAML_LINT_VERSION=1.32.0 +ENV YAMLLINT_VERSION=1.32.0 # install software RUN apk update @@ -30,7 +30,7 @@ RUN pip3 install --upgrade pip RUN pip3 install --use-pep517 --ignore-installed \ ansible-core==${ANSIBLE_VERSION} \ ansible-lint==${ANSIBLE_LINT_VERSION} \ - yamllint==${YAML_LINT_VERSION} + yamllint==${YAML_INT_VERSION} # install ansible collections RUN ansible-galaxy collection install ansible.posix