Skip to content

Commit 2c90b20

Browse files
chore(deps): bump versions (#531)
1 parent e564ada commit 2c90b20

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.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.8.3"
32+
rev: "v0.8.4"
3333
hooks:
3434
- id: ruff
3535
args: ["--fix", "--show-fixes"]
@@ -43,7 +43,7 @@ repos:
4343
- id: rst-inline-touching-normal
4444

4545
- repo: https://github.com/pre-commit/mirrors-mypy
46-
rev: "v1.13.0"
46+
rev: "v1.14.0"
4747
hooks:
4848
- id: mypy
4949
files: "(src|tests)"

docs/pages/guides/coverage.md

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

9292
```yaml
9393
- name: Upload coverage report
94-
uses: codecov/[email protected].1
94+
uses: codecov/[email protected].2
9595
with:
9696
token: ${{ secrets.CODECOV_TOKEN }}
9797
```

docs/pages/guides/style.md

Lines changed: 4 additions & 4 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.8.3"
114+
rev: "v0.8.4"
115115
hooks:
116116
# id: ruff 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.8.3"
204+
rev: "v0.8.4"
205205
hooks:
206206
- id: ruff
207207
args: ["--fix", "--show-fixes"]
@@ -488,7 +488,7 @@ when clearly better (please always use them, they are faster) if you set
488488

489489
```yaml
490490
- repo: https://github.com/asottile/pyupgrade
491-
rev: "v3.19.0"
491+
rev: "v3.19.1"
492492
hooks:
493493
- id: pyupgrade
494494
args: ["--py39-plus"]
@@ -533,7 +533,7 @@ The MyPy addition for pre-commit:
533533

534534
```yaml
535535
- repo: https://github.com/pre-commit/mirrors-mypy
536-
rev: "v1.13.0"
536+
rev: "v1.14.0"
537537
hooks:
538538
- id: mypy
539539
files: src

docs/pages/guides/tasks.md

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

322322
```yaml
323-
- uses: astral-sh/setup-uv@v4
323+
- uses: astral-sh/setup-uv@v5
324324
```
325325

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ jobs:
7474
--durations=20
7575
7676
- name: Upload coverage report
77-
uses: codecov/[email protected].1
77+
uses: codecov/[email protected].2
7878
with:
7979
token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %}

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

Lines changed: 2 additions & 2 deletions
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.8.3"
45+
rev: "v0.8.4"
4646
hooks:
4747
- id: ruff
4848
args: ["--fix", "--show-fixes"]
@@ -59,7 +59,7 @@ repos:
5959
{%- endif %}
6060

6161
- repo: https://github.com/pre-commit/mirrors-mypy
62-
rev: "v1.13.0"
62+
rev: "v1.14.0"
6363
hooks:
6464
- id: mypy
6565
files: src|tests

0 commit comments

Comments
 (0)