From 37833d8815970600733d0a98441b5be094dfbbd3 Mon Sep 17 00:00:00 2001 From: "scientific-python-pr-tokenbot[bot]" <181030687+scientific-python-pr-tokenbot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 06:03:45 +0000 Subject: [PATCH] [create-pull-request] automated change --- .pre-commit-config.yaml | 2 +- docs/pages/guides/gha_basic.md | 6 +++--- docs/pages/guides/gha_pure.md | 8 ++++---- docs/pages/guides/gha_wheels.md | 4 ++-- docs/pages/guides/style.md | 8 ++++---- {{cookiecutter.project_name}}/.github/workflows/ci.yml | 4 ++-- ...if cookiecutter.__type!='compiled' %}cd.yml{% endif %} | 2 +- ...if cookiecutter.__type=='compiled' %}cd.yml{% endif %} | 4 ++-- {{cookiecutter.project_name}}/.pre-commit-config.yaml | 4 ++-- 9 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 774776c9..bff05066 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,7 +29,7 @@ repos: additional_dependencies: [black==24.*] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.14.5" + rev: "v0.14.6" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] diff --git a/docs/pages/guides/gha_basic.md b/docs/pages/guides/gha_basic.md index fc64b224..24fd37f8 100644 --- a/docs/pages/guides/gha_basic.md +++ b/docs/pages/guides/gha_basic.md @@ -66,7 +66,7 @@ lint: name: Lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: "3.x" @@ -104,7 +104,7 @@ tests: - "3.14" name: Check Python ${{ matrix.python-version }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 # Only needed if using setuptools-scm @@ -516,7 +516,7 @@ jobs: # more here if you have more situations to detect steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Changed test-related files if: github.event_name == 'pull_request' diff --git a/docs/pages/guides/gha_pure.md b/docs/pages/guides/gha_pure.md index c8546786..ad6647ec 100644 --- a/docs/pages/guides/gha_pure.md +++ b/docs/pages/guides/gha_pure.md @@ -70,7 +70,7 @@ the name "CI/CD", you can just combine the two `on` dicts. dist: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -124,7 +124,7 @@ later in the upload action for the release job, as well). > > ```yaml > steps: -> - uses: actions/checkout@v5 +> - uses: actions/checkout@v6 > - uses: hynek/build-and-inspect-python-package@v2 > ``` > @@ -229,7 +229,7 @@ jobs: dist: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -282,7 +282,7 @@ jobs: dist: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/docs/pages/guides/gha_wheels.md b/docs/pages/guides/gha_wheels.md index b008672c..938b5c0a 100644 --- a/docs/pages/guides/gha_wheels.md +++ b/docs/pages/guides/gha_wheels.md @@ -79,7 +79,7 @@ make_sdist: name: Make SDist runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 # Optional, use if you use setuptools_scm submodules: true # Optional, use if you have submodules @@ -120,7 +120,7 @@ build_wheels: - macos-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 submodules: true diff --git a/docs/pages/guides/style.md b/docs/pages/guides/style.md index 50f8618d..9599ee08 100644 --- a/docs/pages/guides/style.md +++ b/docs/pages/guides/style.md @@ -140,7 +140,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.14.5" + rev: "v0.14.6" hooks: # id: ruff-check would go here if using both - id: ruff-format @@ -230,7 +230,7 @@ pre-commit hook. ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.14.5" + rev: "v0.14.6" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -576,7 +576,7 @@ when clearly better (please always use them, they are faster) if you set ```yaml - repo: https://github.com/asottile/pyupgrade - rev: "v3.21.1" + rev: "v3.21.2" hooks: - id: pyupgrade args: ["--py39-plus"] @@ -831,7 +831,7 @@ following pre-commit config: ```yaml - repo: https://github.com/pre-commit/mirrors-clang-format - rev: "v21.1.5" + rev: "v21.1.6" hooks: - id: clang-format types_or: [c++, c, cuda] diff --git a/{{cookiecutter.project_name}}/.github/workflows/ci.yml b/{{cookiecutter.project_name}}/.github/workflows/ci.yml index 9c8d9510..4ee80c22 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_name}}/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: name: Format runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - uses: actions/setup-python@v6 @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 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 ac68d7de..85936c58 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 %} @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 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 31a9d463..9991028c 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 %} @@ -23,7 +23,7 @@ jobs: name: Make SDist runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -50,7 +50,7 @@ jobs: - macos-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index 4da4941e..6d988702 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -43,7 +43,7 @@ repos: args: [--prose-wrap=always] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.14.5" + rev: "v0.14.6" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -52,7 +52,7 @@ repos: {%- if cookiecutter.backend in ["pybind11", "skbuild", "mesonpy"] %} - repo: https://github.com/pre-commit/mirrors-clang-format - rev: "v21.1.5" + rev: "v21.1.6" hooks: - id: clang-format types_or: [c++, c, cuda]