Skip to content

Commit

Permalink
[.pre-commit-config.yaml]: Update Hooks
Browse files Browse the repository at this point in the history
Updates:

* https://github.com/pre-commit/pre-commit-hooks
  from `v4.5.0` to `v4.6.0`.
* https://github.com/python-jsonschema/check-jsonschema
  from `0.27.2` to `0.28.2`.
* https://github.com/PyCQA/bandit
  from `1.7.7` to `1.7.8`.
* https://github.com/shellcheck-py/shellcheck-py
  from `v0.9.0.6` to `v0.10.0.1`
  • Loading branch information
andthum committed Apr 16, 2024
1 parent 87387b5 commit 57b549c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ci:

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

- repo: "https://github.com/python-jsonschema/check-jsonschema"
rev: "0.27.4"
rev: "0.28.2"
hooks:
# Validate Dependabot Config (v2) against the schema provided by
# SchemaStore.
Expand Down Expand Up @@ -169,6 +169,8 @@ repos:
- "colorama"

- repo: "https://github.com/psf/black-pre-commit-mirror"
# Stay at black version 23, because some formatting rules change in
# version 24.
rev: "23.12.1"
hooks:
# Format Python code with black.
Expand Down Expand Up @@ -204,7 +206,7 @@ repos:
- "pep8-naming >=0.1, <1.0"

- repo: "https://github.com/PyCQA/bandit"
rev: "1.7.7"
rev: "1.7.8"
hooks:
# Check code security with bandit.
- id: "bandit"
Expand Down Expand Up @@ -247,7 +249,7 @@ repos:
- "-l"

- repo: "https://github.com/shellcheck-py/shellcheck-py"
rev: "v0.9.0.6"
rev: "v0.10.0.1"
hooks:
# Lint shell scripts with shellcheck.
# NOTE: The official shellcheck hook from
Expand Down

0 comments on commit 57b549c

Please sign in to comment.