Skip to content

Commit 7d7ffa9

Browse files
[create-pull-request] automated change
1 parent 5557630 commit 7d7ffa9

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929
additional_dependencies: [black==24.*]
3030

3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: "v0.13.3"
32+
rev: "v0.14.0"
3333
hooks:
3434
- id: ruff-check
3535
args: ["--fix", "--show-fixes"]

docs/pages/guides/gha_basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ tests:
115115
allow-prereleases: true
116116
117117
- name: Download uv
118-
uses: astral-sh/setup-uv@v6
118+
uses: astral-sh/setup-uv@v7
119119
120120
- name: Test package
121121
run: uv run pytest

docs/pages/guides/gha_wheels.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ make_sdist:
8383
with:
8484
fetch-depth: 0 # Optional, use if you use setuptools_scm
8585
submodules: true # Optional, use if you have submodules
86-
- uses: astral-sh/setup-uv@v6
86+
- uses: astral-sh/setup-uv@v7
8787
8888
- name: Build SDist
8989
run: uv build --sdist
@@ -125,7 +125,7 @@ build_wheels:
125125
fetch-depth: 0
126126
submodules: true
127127
128-
- uses: astral-sh/setup-uv@v6
128+
- uses: astral-sh/setup-uv@v7
129129
130130
- uses: pypa/[email protected]
131131

docs/pages/guides/style.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Here is the snippet to add the formatter to your `.pre-commit-config.yml`
111111

112112
```yaml
113113
- repo: https://github.com/astral-sh/ruff-pre-commit
114-
rev: "v0.13.3"
114+
rev: "v0.14.0"
115115
hooks:
116116
# id: ruff-check would go here if using both
117117
- id: ruff-format
@@ -201,7 +201,7 @@ pre-commit hook.
201201
202202
```yaml
203203
- repo: https://github.com/astral-sh/ruff-pre-commit
204-
rev: "v0.13.3"
204+
rev: "v0.14.0"
205205
hooks:
206206
- id: ruff-check
207207
args: ["--fix", "--show-fixes"]

docs/pages/guides/tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ You can install `uv` with `pipx`, `brew`, etc. If you want to use uv in GitHub
315315
Actions, one way is to use this:
316316

317317
```yaml
318-
- uses: astral-sh/setup-uv@v6
318+
- uses: astral-sh/setup-uv@v7
319319
```
320320

321321
Check your jobs with `uv`; most things do not need to change. The main

{{cookiecutter.project_name}}/.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
python-version: "3.x"
3131

32-
- uses: astral-sh/setup-uv@v6
32+
- uses: astral-sh/setup-uv@v7
3333

3434
- uses: pre-commit/[email protected]
3535
with:
@@ -68,7 +68,7 @@ jobs:
6868
{%- endraw %}
6969
{%- endif %}
7070

71-
- uses: astral-sh/setup-uv@v6
71+
- uses: astral-sh/setup-uv@v7
7272

7373
{%- if cookiecutter.backend == "mesonpy" %}
7474

{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %}

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
fetch-depth: 0
5656

57-
- uses: astral-sh/setup-uv@v6
57+
- uses: astral-sh/setup-uv@v7
5858

5959
- uses: pypa/[email protected]
6060

{{cookiecutter.project_name}}/.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repos:
4242
args: [--prose-wrap=always]
4343

4444
- repo: https://github.com/astral-sh/ruff-pre-commit
45-
rev: "v0.13.3"
45+
rev: "v0.14.0"
4646
hooks:
4747
- id: ruff-check
4848
args: ["--fix", "--show-fixes"]

0 commit comments

Comments
 (0)