Skip to content

Commit c175ada

Browse files
authored
[CI] pre-commit autoupdate; configure bandit[toml] dependency (#1799)
Under bandit settings it lists the additional dependency for toml files https://bandit.readthedocs.io/en/latest/config.html#bandit-settings
1 parent e7a5a3d commit c175ada

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.pre-commit-config.yaml

+8-7
Original file line numberDiff line numberDiff line change
@@ -70,42 +70,43 @@ repos:
7070
- .github/workflows/license-templates/LICENSE.txt
7171
- --fuzzy-match-generates-todo
7272
- repo: https://github.com/psf/black-pre-commit-mirror
73-
rev: 24.10.0
73+
rev: 25.1.0
7474
hooks:
7575
- id: black-jupyter
7676
name: run black-jupyter
7777
description: format Python files and Jupyter Notebooks with black
7878
- repo: https://github.com/pre-commit/mirrors-clang-format
79-
rev: v19.1.4
79+
rev: v19.1.7
8080
hooks:
8181
- id: clang-format
8282
name: run clang-format
8383
description: format C files with clang-format
8484
args: [--style=Google]
8585
types_or: [c]
8686
- repo: https://github.com/PyCQA/bandit
87-
rev: 1.7.10
87+
rev: 1.8.2
8888
hooks:
8989
- id: bandit
9090
name: run bandit
9191
description: check Python code for security issues
9292
args: ["-c=pyproject.toml", "-r"]
93+
additional_dependencies: ["bandit[toml]"]
9394
- repo: https://github.com/codespell-project/codespell
94-
rev: v2.3.0
95+
rev: v2.4.1
9596
hooks:
9697
- id: codespell
9798
name: run codespell
9899
description: check spelling with codespell
99100
args: [--ignore-words=.github/linters/codespell.txt]
100101
exclude: ^docs/image|^spark/common/src/test/resources|^docs/usecases|^tools/maven/scalafmt
101102
- repo: https://github.com/gitleaks/gitleaks
102-
rev: v8.21.2
103+
rev: v8.23.3
103104
hooks:
104105
- id: gitleaks
105106
name: run gitleaks
106107
description: check for secrets with gitleaks
107108
- repo: https://github.com/shssoichiro/oxipng
108-
rev: v9.1.2
109+
rev: v9.1.3
109110
hooks:
110111
- id: oxipng
111112
name: run oxipng
@@ -160,7 +161,7 @@ repos:
160161
args: [--markdown-linebreak-ext=md]
161162
exclude: ^docs-overrides/main\.html$|\.Rd$
162163
- repo: https://github.com/igorshubovych/markdownlint-cli
163-
rev: v0.43.0
164+
rev: v0.44.0
164165
hooks:
165166
- id: markdownlint
166167
name: run markdownlint

0 commit comments

Comments
 (0)