diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e2fc0a2f..1ab1d462 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,7 +23,7 @@ repos: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.16.1" + rev: "v0.16.2" hooks: - id: ruff-check args: ["--fix"] @@ -60,13 +60,13 @@ repos: types_or: [yaml, html, css, scss, javascript, json] - repo: https://github.com/rvben/rumdl-pre-commit - rev: "v0.2.49" + rev: "v0.2.53" hooks: - id: rumdl args: [--no-exclude] # Disable all exclude patterns - repo: https://github.com/crate-ci/typos - rev: "v1.48.0" + rev: "v1.49.0" hooks: - id: typos exclude: ^Gemfile\.lock$ diff --git a/docs/guides/gha_wheels.md b/docs/guides/gha_wheels.md index 0e81077d..0c3d1052 100644 --- a/docs/guides/gha_wheels.md +++ b/docs/guides/gha_wheels.md @@ -115,7 +115,7 @@ build_wheels: - uses: astral-sh/setup-uv@v9.0.0 - - uses: pypa/cibuildwheel@v4.1 + - uses: pypa/cibuildwheel@v4.2 - name: Upload wheels uses: actions/upload-artifact@v7 diff --git a/docs/guides/style.md b/docs/guides/style.md index 782d546a..32421483 100644 --- a/docs/guides/style.md +++ b/docs/guides/style.md @@ -148,7 +148,7 @@ Here is the snippet to add the formatter to your `.pre-commit-config.yml` ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.16.1" + rev: "v0.16.2" hooks: # id: ruff-check would go here if using both - id: ruff-format @@ -216,7 +216,7 @@ your code and your docs. Add `markdown` to the `ruff-format` hook's `types_or`: ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.16.1" + rev: "v0.16.2" hooks: - id: ruff-format types_or: [python, pyi, jupyter, markdown, pyproject] @@ -256,7 +256,7 @@ pre-commit hook. ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.16.1" + rev: "v0.16.2" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -683,7 +683,7 @@ with `additional_dependencies`, and pass extra flags via `args`. :sync: ty ```yaml - repo: https://github.com/astral-sh/ty-pre-commit - rev: "v0.0.65" + rev: "v0.0.69" hooks: - id: ty ``` @@ -920,7 +920,7 @@ integration. ```yaml - repo: https://github.com/crate-ci/typos - rev: "v1.48.0" + rev: "v1.49.0" hooks: - id: typos args: [] @@ -1078,7 +1078,7 @@ schemas, and you can load them via URL. It work on JSON, YAML, and TOML. ```yaml - repo: https://github.com/python-jsonschema/check-jsonschema - rev: "0.37.4" + rev: "0.38.0" hooks: - id: check-dependabot - id: check-github-workflows diff --git a/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} b/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} index ea245171..21e79455 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} +++ b/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} @@ -67,7 +67,7 @@ jobs: # Disable caching to avoid poisoning published wheels enable-cache: false - - uses: pypa/cibuildwheel@v4.1 + - uses: pypa/cibuildwheel@v4.2 - name: Upload wheels uses: actions/upload-artifact@v7 diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index 2df259fd..edb22fcb 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -37,7 +37,7 @@ repos: args: [--prose-wrap=always] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.16.1" + rev: "v0.16.2" hooks: - id: ruff-check args: ["--fix"] @@ -100,7 +100,7 @@ repos: additional_dependencies: ["validate-pyproject-schema-store[all]"] - repo: https://github.com/python-jsonschema/check-jsonschema - rev: "0.37.4" + rev: "0.38.0" hooks: {%- if cookiecutter.__ci == "github" %} - id: check-dependabot