From 4555ca782b46ce04301a9e7d629f8176867cf78f Mon Sep 17 00:00:00 2001 From: Hadrien Patte Date: Sun, 3 Mar 2019 19:15:15 +0100 Subject: [PATCH] Feat: update ansible-lint to version 4.0.0 Signed-off-by: Hadrien Patte --- .gitlab-ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5af274e..e11bdbf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,14 +1,18 @@ --- -image: quay.io/ansible/molecule:2.19 +image: python:3.6 stages: - lint yamllint: stage: lint - script: yamllint -c .yamllint.yml . + script: + - pip install yamllint==1.15.0 + - yamllint -c .yamllint.yml . ansible-lint: stage: lint - script: ansible-lint *.yml + script: + - pip install ansible-lint==4.0.0 + - ansible-lint *.yml ...