diff --git a/.github/workflows/validate-scripts.yml b/.github/workflows/validate-scripts.yml index 07867ea..598cd0b 100644 --- a/.github/workflows/validate-scripts.yml +++ b/.github/workflows/validate-scripts.yml @@ -5,20 +5,20 @@ on: pull_request: branches: [main] paths: - - "!*.*" + - '!*.*' - .github/scripts/validate-scripts.sh - .github/workflows/validate-scripts.yml - - "*" - - "tests/*.bats" + - '*' + - 'tests/*.bats' - README.md push: branches: [main] paths: - - "!*.*" + - '!*.*' - .github/scripts/validate-scripts.sh - .github/workflows/validate-scripts.yml - - "*" - - "tests/*.bats" + - '*' + - 'tests/*.bats' - README.md concurrency: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3490e49..d275e12 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -50,7 +50,7 @@ repos: rev: v6.0.0 hooks: - id: check-added-large-files - args: ["--maxkb=1024"] + args: ['--maxkb=1024'] - id: check-case-conflict - id: check-executables-have-shebangs - id: check-merge-conflict @@ -65,7 +65,7 @@ repos: hooks: - id: trailing-whitespace - repo: https://github.com/rbubley/mirrors-prettier - rev: v3.8.0 + rev: v3.8.1 hooks: - id: prettier types_or: [yaml, markdown, html, css, scss, javascript, json] @@ -77,7 +77,7 @@ repos: rev: v0.47.0 hooks: - id: markdownlint - args: ["--fix"] + args: ['--fix'] # linting - repo: https://github.com/pre-commit/pre-commit-hooks @@ -93,7 +93,7 @@ repos: - id: yamllint args: [--strict] - repo: https://github.com/adhtruong/mirrors-typos - rev: v1.42.0 + rev: v1.42.1 hooks: - id: typos - repo: https://github.com/codespell-project/codespell @@ -114,9 +114,9 @@ repos: rev: v0.24.1 hooks: - id: validate-pyproject - additional_dependencies: ["validate-pyproject-schema-store[all]"] + additional_dependencies: ['validate-pyproject-schema-store[all]'] - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.36.0 + rev: 0.36.1 hooks: - id: check-dependabot - id: check-github-workflows