diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d5e13de2..297f9892 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -54,13 +54,13 @@ repos: - types-PyYAML - repo: https://github.com/rbubley/mirrors-prettier - rev: "v3.9.5" + rev: "v3.9.6" hooks: - id: prettier types_or: [yaml, html, css, scss, javascript, json] - repo: https://github.com/rvben/rumdl-pre-commit - rev: "v0.2.37" + rev: "v0.2.43" hooks: - id: rumdl args: [--no-exclude] # Disable all exclude patterns @@ -72,7 +72,7 @@ repos: exclude: ^Gemfile\.lock$ - repo: https://github.com/zizmorcore/zizmor-pre-commit - rev: "v1.27.0" + rev: "v1.28.0" hooks: - id: zizmor diff --git a/docs/guides/gha_basic.md b/docs/guides/gha_basic.md index 310eedb6..9c3e3274 100644 --- a/docs/guides/gha_basic.md +++ b/docs/guides/gha_basic.md @@ -122,7 +122,7 @@ tests: allow-prereleases: true - name: Download uv - uses: astral-sh/setup-uv@v8.3.2 + uses: astral-sh/setup-uv@v9.0.0 - name: Test package run: uv run pytest diff --git a/docs/guides/gha_wheels.md b/docs/guides/gha_wheels.md index c37addf4..0e81077d 100644 --- a/docs/guides/gha_wheels.md +++ b/docs/guides/gha_wheels.md @@ -73,7 +73,7 @@ make_sdist: with: fetch-depth: 0 # Optional, use if you use setuptools_scm submodules: true # Optional, use if you have submodules - - uses: astral-sh/setup-uv@v8.3.2 + - uses: astral-sh/setup-uv@v9.0.0 - name: Build SDist run: uv build --sdist @@ -113,7 +113,7 @@ build_wheels: fetch-depth: 0 submodules: true - - uses: astral-sh/setup-uv@v8.3.2 + - uses: astral-sh/setup-uv@v9.0.0 - uses: pypa/cibuildwheel@v4.1 diff --git a/docs/guides/security.md b/docs/guides/security.md index b5de7bb0..540fbf81 100644 --- a/docs/guides/security.md +++ b/docs/guides/security.md @@ -68,7 +68,7 @@ it as a pre-commit hook or as a GitHub Action: ```yaml - repo: https://github.com/zizmorcore/zizmor-pre-commit - rev: "v1.27.0" + rev: "v1.28.0" hooks: - id: zizmor ``` diff --git a/docs/guides/style.md b/docs/guides/style.md index 5580f062..9913674f 100644 --- a/docs/guides/style.md +++ b/docs/guides/style.md @@ -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.61" + rev: "v0.0.63" hooks: - id: ty ``` @@ -1030,7 +1030,7 @@ number of different file types. An example of usage: ```yaml - repo: https://github.com/rbubley/mirrors-prettier - rev: "v3.9.5" + rev: "v3.9.6" hooks: - id: prettier types_or: [yaml, markdown, html, css, scss, javascript, json] diff --git a/docs/guides/tasks.md b/docs/guides/tasks.md index c91a195c..3a7b319a 100644 --- a/docs/guides/tasks.md +++ b/docs/guides/tasks.md @@ -309,7 +309,7 @@ You can install `uv` with `pipx`, `brew`, etc. If you want to use uv in GitHub Actions, one way is to use this: ```yaml -- uses: astral-sh/setup-uv@v8.3.2 +- uses: astral-sh/setup-uv@v9.0.0 ``` Check your jobs with `uv`; most things do not need to change. The main diff --git a/{{cookiecutter.project_name}}/.github/workflows/ci.yml b/{{cookiecutter.project_name}}/.github/workflows/ci.yml index fba4e84a..0124bb1b 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_name}}/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: with: python-version: "3.x" - - uses: astral-sh/setup-uv@v8.3.2 + - uses: astral-sh/setup-uv@v9.0.0 - uses: j178/prek-action@v2 @@ -75,7 +75,7 @@ jobs: python-version: {% raw %}${{ matrix.python-version }}{% endraw %} allow-prereleases: true - - uses: astral-sh/setup-uv@v8.3.2 + - uses: astral-sh/setup-uv@v9.0.0 {%- if cookiecutter.backend == "mesonpy" %} 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 7c3cb9a3..ea245171 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 %} @@ -62,7 +62,7 @@ jobs: persist-credentials: false fetch-depth: 0 - - uses: astral-sh/setup-uv@v8.3.2 + - uses: astral-sh/setup-uv@v9.0.0 with: # Disable caching to avoid poisoning published wheels enable-cache: false diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index c13d2831..d5e7581c 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -30,7 +30,7 @@ repos: - id: rst-inline-touching-normal - repo: https://github.com/rbubley/mirrors-prettier - rev: "v3.9.5" + rev: "v3.9.6" hooks: - id: prettier types_or: [yaml, markdown, html, css, scss, javascript, json] @@ -113,7 +113,7 @@ repos: {%- if cookiecutter.__ci == "github" %} - repo: https://github.com/zizmorcore/zizmor-pre-commit - rev: "v1.27.0" + rev: "v1.28.0" hooks: - id: zizmor {%- endif %}