Update ansible-lint version in CI
Some checks failed
continuous-integration/drone/push Build is failing

Reduce CI time by telling pip and ansible-lint that they shouldn't check for new versions
This commit is contained in:
Paul Brinkmeier 2023-06-09 00:27:38 +02:00
parent 6c3bd0f1d4
commit 4060c7afba

View File

@ -6,8 +6,8 @@ steps:
- name: ansible-lint - name: ansible-lint
image: python:3.10.6 image: python:3.10.6
commands: commands:
- pip install ansible==6.4.0 ansible-lint==6.4.0 > /dev/null 2> /dev/null - pip --disable-pip-version-check install ansible-core==2.15.0 ansible-lint==6.16.1 > /dev/null 2> /dev/null
- ansible-lint ansible - ansible-lint --offline ansible
--- ---
kind: pipeline kind: pipeline