Skip to content

Commit 559053d

Browse files
chore(deps): update all dependencies (#4877)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent a2bc8b8 commit 559053d

File tree

4 files changed

+224
-222
lines changed

4 files changed

+224
-222
lines changed

.config/requirements-lock.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ rpds-py==0.30.0
7070
# via
7171
# jsonschema
7272
# referencing
73-
ruamel-yaml==0.18.16
73+
ruamel-yaml==0.18.17
7474
# via ansible-lint
7575
subprocess-tee==0.4.2
7676
# via

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ repos:
3030
hooks:
3131
- id: check-useless-excludes
3232
- repo: https://github.com/astral-sh/uv-pre-commit
33-
rev: 0.9.17
33+
rev: 0.9.18
3434
hooks:
3535
- id: uv-sync
3636
- id: uv-lock
@@ -58,14 +58,14 @@ repos:
5858
- "-o"
5959
- ".config/requirements-lock.txt"
6060
- repo: https://github.com/biomejs/pre-commit
61-
rev: "v2.3.8"
61+
rev: "v2.3.10"
6262
hooks:
6363
- id: biome-check
6464
name: biome
6565
alias: biome
6666
args: [--unsafe]
6767
- repo: https://github.com/streetsidesoftware/cspell-cli
68-
rev: v9.3.3
68+
rev: v9.4.0
6969
hooks:
7070
- id: cspell
7171
entry: bash
@@ -79,7 +79,7 @@ repos:
7979
]
8080
name: cspell + remove unused and sort dictionary
8181
- repo: https://github.com/python-jsonschema/check-jsonschema
82-
rev: 0.35.0
82+
rev: 0.36.0
8383
hooks:
8484
- id: check-github-workflows
8585
- repo: https://github.com/pre-commit/pre-commit-hooks.git
@@ -146,22 +146,22 @@ repos:
146146
entry: yamllint --strict
147147

148148
- repo: https://github.com/tombi-toml/tombi-pre-commit
149-
rev: v0.7.7
149+
rev: v0.7.11
150150
hooks:
151151
- id: tombi-format
152152
alias: toml
153153
- id: tombi-lint
154154
alias: toml
155155

156156
- repo: https://github.com/astral-sh/ruff-pre-commit
157-
rev: v0.14.9
157+
rev: v0.14.10
158158
hooks:
159159
- id: ruff-format
160160
alias: ruff
161161
- id: ruff-check
162162
alias: ruff
163163
- repo: https://github.com/pre-commit/mirrors-mypy
164-
rev: v1.19.0
164+
rev: v1.19.1
165165
hooks:
166166
- id: mypy
167167
# "." and pass_files are used to make pre-commit mypy behave the same as standalone mypy

src/ansiblelint/rules/var_naming.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,9 @@ def matchtask(
274274
# If the task uses the 'set_fact' module
275275
if ansible_module == "set_fact":
276276
for key in filter(
277-
lambda x: isinstance(x, str)
278-
and not x.startswith("__")
279-
and x != "cacheable",
277+
lambda x: (
278+
isinstance(x, str) and not x.startswith("__") and x != "cacheable"
279+
),
280280
task["action"].keys(),
281281
):
282282
match_error = self.get_var_naming_matcherror(

0 commit comments

Comments
 (0)