From d3fbfa26ca4b5cd66afe07af1badbfad064bbf45 Mon Sep 17 00:00:00 2001 From: Joey H <89617856+jdholtz@users.noreply.github.com> Date: Tue, 27 Dec 2022 12:56:28 -0600 Subject: [PATCH] fix(pre-commit): update URL and versions in the pre-commit configuration (#1865) There was a dead link in the pre-commit-golang URL. Also, Woile/commitizen redirects to commitizen-tools/commitizen, so change that URL as well. Last, update all the versions using pre-commit autoupdate. This will make it easier for new contributers to use the pre-commit hooks when contributing. --- .pre-commit-config.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6f12dbd4..1648635c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,8 +1,8 @@ default_stages: [commit] repos: - - repo: git://github.com/dnephin/pre-commit-golang - rev: v0.3.5 + - repo: https://github.com/dnephin/pre-commit-golang + rev: v0.5.1 hooks: - id: go-fmt - id: go-imports @@ -12,20 +12,20 @@ repos: - id: go-build - repo: https://github.com/pre-commit/mirrors-prettier - rev: v2.2.1 # Use the sha or tag you want to point at + rev: v3.0.0-alpha.4 # Use the sha or tag you want to point at hooks: - id: prettier - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v3.4.0 # Use the ref you want to point at + rev: v4.4.0 # Use the ref you want to point at hooks: - id: trailing-whitespace - id: check-json - id: check-yaml - id: check-added-large-files - - repo: https://github.com/Woile/commitizen - rev: v2.17.6 + - repo: https://github.com/commitizen-tools/commitizen + rev: v2.38.0 hooks: - id: commitizen stages: [commit-msg]