Skip to content

Commit 228add5

Browse files
chore(deps): bump versions (#794)
[create-pull-request] automated change Co-authored-by: scientific-python-pr-tokenbot[bot] <181030687+scientific-python-pr-tokenbot[bot]@users.noreply.github.com>
1 parent d8a8d57 commit 228add5

9 files changed

Lines changed: 17 additions & 17 deletions

File tree

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
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.15.14"
32+
rev: "v0.15.16"
3333
hooks:
3434
- id: ruff-check
3535
args: ["--fix"]
@@ -72,7 +72,7 @@ repos:
7272
args: [--no-exclude] # Disable all exclude patterns
7373

7474
- repo: https://github.com/crate-ci/typos
75-
rev: "v1.46.3"
75+
rev: "v1.47.2"
7676
hooks:
7777
- id: typos
7878
exclude: ^Gemfile\.lock$

docs/pages/guides/coverage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ enough for a simple testing suite, can be written as follows:
233233

234234
```yaml
235235
- name: Upload coverage report
236-
uses: codecov/codecov-action@v6
236+
uses: codecov/codecov-action@v7
237237
with:
238238
token: ${{ secrets.CODECOV_TOKEN }}
239239
```

docs/pages/guides/gha_basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ tests:
123123
allow-prereleases: true
124124
125125
- name: Download uv
126-
uses: astral-sh/setup-uv@v8.1.0
126+
uses: astral-sh/setup-uv@v8.2.0
127127
128128
- name: Test package
129129
run: uv run pytest

docs/pages/guides/gha_wheels.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ make_sdist:
7474
with:
7575
fetch-depth: 0 # Optional, use if you use setuptools_scm
7676
submodules: true # Optional, use if you have submodules
77-
- uses: astral-sh/setup-uv@v8.1.0
77+
- uses: astral-sh/setup-uv@v8.2.0
7878
7979
- name: Build SDist
8080
run: uv build --sdist
@@ -114,9 +114,9 @@ build_wheels:
114114
fetch-depth: 0
115115
submodules: true
116116
117-
- uses: astral-sh/setup-uv@v8.1.0
117+
- uses: astral-sh/setup-uv@v8.2.0
118118
119-
- uses: pypa/cibuildwheel@v3.4
119+
- uses: pypa/cibuildwheel@v4.0
120120
121121
- name: Upload wheels
122122
uses: actions/upload-artifact@v7

docs/pages/guides/style.md

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

150150
```yaml
151151
- repo: https://github.com/astral-sh/ruff-pre-commit
152-
rev: "v0.15.14"
152+
rev: "v0.15.16"
153153
hooks:
154154
# id: ruff-check would go here if using both
155155
- id: ruff-format
@@ -235,7 +235,7 @@ pre-commit hook.
235235

236236
```yaml
237237
- repo: https://github.com/astral-sh/ruff-pre-commit
238-
rev: "v0.15.14"
238+
rev: "v0.15.16"
239239
hooks:
240240
- id: ruff-check
241241
args: ["--fix", "--show-fixes"]
@@ -787,7 +787,7 @@ integration.
787787

788788
```yaml
789789
- repo: https://github.com/crate-ci/typos
790-
rev: "v1.46.3"
790+
rev: "v1.47.2"
791791
hooks:
792792
- id: typos
793793
args: []

docs/pages/guides/tasks.md

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

315315
```yaml
316-
- uses: astral-sh/setup-uv@v8.1.0
316+
- uses: astral-sh/setup-uv@v8.2.0
317317
```
318318

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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
python-version: "3.x"
3434

35-
- uses: astral-sh/setup-uv@v8.1.0
35+
- uses: astral-sh/setup-uv@v8.2.0
3636

3737
- uses: j178/prek-action@v2
3838

@@ -67,7 +67,7 @@ jobs:
6767
python-version: {% raw %}${{ matrix.python-version }}{% endraw %}
6868
allow-prereleases: true
6969

70-
- uses: astral-sh/setup-uv@v8.1.0
70+
- uses: astral-sh/setup-uv@v8.2.0
7171

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

@@ -86,7 +86,7 @@ jobs:
8686
--durations=20
8787
8888
- name: Upload coverage report
89-
uses: codecov/codecov-action@v6
89+
uses: codecov/codecov-action@v7
9090
with:
9191
token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %}
9292

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ jobs:
5454
with:
5555
fetch-depth: 0
5656

57-
- uses: astral-sh/setup-uv@v8.1.0
57+
- uses: astral-sh/setup-uv@v8.2.0
5858

59-
- uses: pypa/cibuildwheel@v3.4
59+
- uses: pypa/cibuildwheel@v4.0
6060

6161
- name: Upload wheels
6262
uses: actions/upload-artifact@v7

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

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

4545
- repo: https://github.com/astral-sh/ruff-pre-commit
46-
rev: "v0.15.14"
46+
rev: "v0.15.16"
4747
hooks:
4848
- id: ruff-check
4949
args: ["--fix"]

0 commit comments

Comments
 (0)