Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/gha_basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/gha_wheels.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/style.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions {{cookiecutter.project_name}}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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" %}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions {{cookiecutter.project_name}}/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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 %}
Loading