Skip to content

Commit 909f223

Browse files
committed
Update ansible-linting
1 parent 3f25e80 commit 909f223

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.ansible-lint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ skip_list:
66
- no-changed-when # Commands should not change things if nothing needs doing.
77
- risky-shell-pipe # Shells that use pipes should set the pipefail option.
88
- literal-compare # Don't compare to literal True/False.
9+
- var-naming[no-role-prefix] # Internal variables don't need role prefix.

.github/workflows/pull-requests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install ansible==10.2.0 # renovate: datasource=pypi depName=ansible
25-
pip install ansible-lint==24.12.2 # renovate: datasource=pypi depName=ansible-lint
24+
pip install ansible==11.1.0 # renovate: datasource=pypi depName=ansible
25+
pip install ansible-lint==25.9.2 # renovate: datasource=pypi depName=ansible-lint
2626
2727
- name: Syntax Check
2828
run: |

0 commit comments

Comments
 (0)