Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: pre-commit.ci auto update #389

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
24 changes: 12 additions & 12 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,29 @@ ci:
autoupdate_commit_msg: 'ci: `pre-commit.ci` auto update'
repos:
- repo: https://github.com/PyCQA/autoflake
rev: v2.2.1
rev: v2.3.1
hooks:
- id: autoflake
args: ['--in-place', '--remove-all-unused-imports', '--remove-unused-variable']
exclude: ^{{cookiecutter.project_name}}
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 6.0.0
hooks:
- id: isort
exclude: ^{{cookiecutter.project_name}}
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 25.1.0
hooks:
- id: black
language_version: python3
exclude: ^{{cookiecutter.project_name}}
- repo: https://github.com/codespell-project/codespell
rev: v2.2.5
rev: v2.4.1
hooks:
- id: codespell
files: \.(py|md)$
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -41,7 +41,7 @@ repos:
- id: check-json
- id: check-toml
- repo: https://github.com/commitizen-tools/commitizen
rev: 3.7.1
rev: v4.2.1
hooks:
- id: commitizen
stages: [commit-msg]
Expand All @@ -52,16 +52,16 @@ repos:
stages: [commit-msg]
args: [--ignore=B6, --msg-filename]
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
rev: 2.7.2
rev: 3.2.0
hooks:
- id: editorconfig-checker
- repo: https://github.com/hadolint/hadolint
rev: v2.12.1-beta
rev: v2.13.1-beta
hooks:
- id: hadolint-docker
args: ['--ignore', 'DL3006']
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.26.3
rev: 0.31.1
hooks:
- id: check-github-workflows
- id: check-renovate
Expand All @@ -73,18 +73,18 @@ repos:
exclude: tests
args: [--config, pyproject.toml]
- repo: https://github.com/PyCQA/bandit
rev: 1.7.5
rev: 1.8.2
hooks:
- id: bandit
additional_dependencies: ["bandit[toml]"]
args: ["-c", "pyproject.toml"]
- repo: https://github.com/tox-dev/pyproject-fmt
rev: 1.1.0
rev: v2.5.0
hooks:
- id: pyproject-fmt
args: [--indent, '2']
- repo: https://github.com/python-poetry/poetry
rev: 1.6.0
rev: 2.0.1
hooks:
- id: poetry-check
- id: poetry-lock
Expand Down