diff --git a/.github/workflows/pre-commit-pr.yaml b/.github/workflows/pre-commit-pr.yaml index c273740..257bfa1 100644 --- a/.github/workflows/pre-commit-pr.yaml +++ b/.github/workflows/pre-commit-pr.yaml @@ -4,7 +4,7 @@ permissions: pull-requests: write contents: write jobs: - dependabot: + pre-commit: runs-on: ubuntu-latest if: github.event.pull_request.user.login == 'pre-commit-ci[bot]' steps: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f0f1572..5a6794e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -42,12 +42,12 @@ repos: - id: python-use-type-annotations # Clang-format for formatting C, C++, and JavaScript files - repo: https://github.com/pre-commit/mirrors-clang-format - rev: "v19.1.4" + rev: "v19.1.5" hooks: - id: clang-format # ESLint for linting JavaScript and TypeScript files - repo: https://github.com/pre-commit/mirrors-eslint - rev: "v9.16.0" + rev: "v9.17.0" hooks: - id: eslint # Runs mypy to check Python type annotations. @@ -114,18 +114,18 @@ repos: - id: checkmake # SQLFluff for linting and fixing SQL files - repo: https://github.com/sqlfluff/sqlfluff - rev: "3.2.5" + rev: "3.3.0" hooks: - id: sqlfluff-lint - id: sqlfluff-fix # RuboCop for linting Ruby files - repo: https://github.com/rubocop/rubocop - rev: "v1.69.1" + rev: "v1.69.2" hooks: - id: rubocop # Terraform-py for formatting and validating Terraform files - repo: https://github.com/AleksaC/terraform-py - rev: "v1.10.1" + rev: "v1.10.2" hooks: - id: tf-fmt - id: tf-validate