Skip to content

Commit f967ece

Browse files
chore: pre-commit autoupdate (#217)
* chore: pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.1.4 → v0.1.6](astral-sh/ruff-pre-commit@v0.1.4...v0.1.6) - [github.com/pre-commit/mirrors-prettier: v3.0.3 → v4.0.0-alpha.3](pre-commit/mirrors-prettier@v3.0.3...v4.0.0-alpha.3) - [github.com/psf/black: 23.10.1 → 23.11.0](psf/black@23.10.1...23.11.0) - [github.com/streetsidesoftware/cspell-cli: v7.3.2 → v8.0.0](streetsidesoftware/cspell-cli@v7.3.2...v8.0.0) - [github.com/python-jsonschema/check-jsonschema: 0.27.1 → 0.27.2](python-jsonschema/check-jsonschema@0.27.1...0.27.2) - [github.com/pre-commit/mirrors-mypy: v1.6.1 → v1.7.1](pre-commit/mirrors-mypy@v1.6.1...v1.7.1) * Update Ruff required-version --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Cristiano Nicolai <[email protected]>
1 parent 85a7921 commit f967ece

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.pre-commit-config.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ repos:
3131
hooks:
3232
- id: remove-tabs
3333
- repo: https://github.com/astral-sh/ruff-pre-commit
34-
rev: "v0.1.4"
34+
rev: "v0.1.6"
3535
hooks:
3636
- id: ruff
3737
args: [--fix, --exit-non-zero-on-fix]
3838
- repo: https://github.com/pre-commit/mirrors-prettier
3939
# keep it before yamllint
40-
rev: v3.0.3
40+
rev: v4.0.0-alpha.3
4141
hooks:
4242
- id: prettier
4343
always_run: true
@@ -46,17 +46,17 @@ repos:
4646
- prettier-plugin-toml
4747
- prettier-plugin-sort-json
4848
- repo: https://github.com/psf/black
49-
rev: 23.10.1
49+
rev: 23.11.0
5050
hooks:
5151
- id: black
5252
language_version: python3
5353
- repo: https://github.com/streetsidesoftware/cspell-cli
54-
rev: v7.3.2
54+
rev: v8.0.0
5555
hooks:
5656
- id: cspell
5757
name: Spell check with cspell
5858
- repo: https://github.com/python-jsonschema/check-jsonschema
59-
rev: 0.27.1
59+
rev: 0.27.2
6060
hooks:
6161
- id: check-github-workflows
6262
- repo: https://github.com/jsh9/pydoclint
@@ -75,7 +75,7 @@ repos:
7575
- ansible-core
7676
- pytest
7777
- repo: https://github.com/pre-commit/mirrors-mypy
78-
rev: v1.6.1
78+
rev: v1.7.1
7979
hooks:
8080
- id: mypy
8181
# Do not modify args to match mypy cli/ide behavior, use config if needed.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ addopts = ["--tb=native"]
126126
markers = ["old", "unit", "requires_ansible_v2"]
127127

128128
[tool.ruff]
129-
required-version = "0.1.4"
129+
required-version = "0.1.6"
130130
select = ["ALL"]
131131
ignore = [
132132
"E501", # we use black

0 commit comments

Comments
 (0)