Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ci:

repos:
- repo: "https://github.com/pre-commit/pre-commit-hooks"
rev: "v5.0.0"
rev: "v6.0.0"
hooks:
### Git ###
# Protect specific branches from direct check-ins.
Expand Down Expand Up @@ -108,7 +108,7 @@ repos:
- id: "check-pre-commit-ci-config"

- repo: "https://github.com/python-jsonschema/check-jsonschema"
rev: "0.31.2"
rev: "0.34.0"
hooks:
# Validate Dependabot Config (v2) against the schema provided by
# SchemaStore.
Expand Down Expand Up @@ -147,7 +147,7 @@ repos:
- repo: "https://github.com/PyCQA/isort"
# Stay at isort version 5, because isort drops support for Python
# 3.8 in version 6. Latest 5 version is 5.13.2.
rev: "5.13.2"
rev: "6.1.0"
hooks:
# Sort import statements with isort
- id: "isort"
Expand All @@ -165,7 +165,7 @@ repos:
- repo: "https://github.com/psf/black-pre-commit-mirror"
# Stay at black version 23, because some formatting rules change in
# version 24. Latest 23 version is 23.12.1.
rev: "23.12.1"
rev: "25.9.0"
hooks:
# Format Python code with black.
- id: "black"
Expand All @@ -178,7 +178,7 @@ repos:
- "--color"

- repo: "https://github.com/PyCQA/flake8"
rev: "7.1.2"
rev: "7.3.0"
hooks:
# Lint Python code with Flake8.
- id: "flake8"
Expand All @@ -197,7 +197,7 @@ repos:
- "pep8-naming >=0.1, <1.0"

- repo: "https://github.com/PyCQA/bandit"
rev: "1.8.3"
rev: "1.8.6"
hooks:
# Check code security with bandit.
- id: "bandit"
Expand All @@ -219,7 +219,7 @@ repos:
######################################################################

- repo: "https://github.com/maxwinterstein/shfmt-py"
rev: "v3.7.0.1"
rev: "v3.12.0.1"
hooks:
# Format shell scripts with shfmt.
# NOTE: The official shfmt hook from
Expand All @@ -240,7 +240,7 @@ repos:
- "-l"

- repo: "https://github.com/shellcheck-py/shellcheck-py"
rev: "v0.10.0.1"
rev: "v0.11.0.1"
hooks:
# Lint shell scripts with shellcheck.
# NOTE: The official shellcheck hook from
Expand All @@ -266,7 +266,7 @@ repos:
# v0.12.0 requires ruby2.7
# v0.11.0 and v0.10.0 require ruby2.6
# => stay at v0.9.0
rev: "v0.9.0"
rev: "v0.12.0"
hooks:
# Lint Markdown files with markdownlint.
- id: "markdownlint"
Loading