Update ansible-linting

This commit is contained in:
Antony Messerli 2025-11-01 16:26:19 -05:00
parent 3f25e80395
commit 909f223bf2
2 changed files with 3 additions and 2 deletions

View file

@ -6,3 +6,4 @@ skip_list:
- no-changed-when # Commands should not change things if nothing needs doing.
- risky-shell-pipe # Shells that use pipes should set the pipefail option.
- literal-compare # Don't compare to literal True/False.
- var-naming[no-role-prefix] # Internal variables don't need role prefix.

View file

@ -21,8 +21,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ansible==10.2.0 # renovate: datasource=pypi depName=ansible
pip install ansible-lint==24.12.2 # renovate: datasource=pypi depName=ansible-lint
pip install ansible==11.1.0 # renovate: datasource=pypi depName=ansible
pip install ansible-lint==25.9.2 # renovate: datasource=pypi depName=ansible-lint
- name: Syntax Check
run: |