diff --git a/.ansible-lint b/.ansible-lint index e91bc814..aa6e0057 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -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. diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index 26340ea8..803b7001 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -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: |