From d60b75109a3be05500b675b0088ddefd67376f7e Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Wed, 4 Nov 2020 18:50:10 +0100 Subject: [PATCH] Upgrade python, ansiblelint and yamllint --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e11bdbf..44b8430 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ --- -image: python:3.6 +image: python:3.9 stages: - lint @@ -7,12 +7,12 @@ stages: yamllint: stage: lint script: - - pip install yamllint==1.15.0 + - pip install yamllint==1.25.0 - yamllint -c .yamllint.yml . ansible-lint: stage: lint script: - - pip install ansible-lint==4.0.0 + - pip install ansible-lint==4.3.7 - ansible-lint *.yml ...