diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 618116e..e033fca 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,7 +13,7 @@ repos: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.11.8 + rev: v0.12.2 hooks: - id: ruff args: [ --fix ] diff --git a/cz_version_bump/git.py b/cz_version_bump/git.py index 7ef940c..22c87a9 100644 --- a/cz_version_bump/git.py +++ b/cz_version_bump/git.py @@ -2,7 +2,7 @@ def repo_name_from_git_remote() -> str: - git_remote_output = subprocess.run( # noqa: S603 + git_remote_output = subprocess.run( ("git", "remote", "-v"), stdout=subprocess.PIPE, text=True,