Skip to content

Commit 514aebe

Browse files
chore(deps): bump versions (#434)
[create-pull-request] automated change Co-authored-by: henryiii <4616906+henryiii@users.noreply.github.com>
1 parent 94c6254 commit 514aebe

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
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.4.4"
32+
rev: "v0.4.5"
3333
hooks:
3434
- id: ruff
3535
args: ["--fix", "--show-fixes"]
@@ -65,7 +65,7 @@ repos:
6565
args: [--prose-wrap=always]
6666

6767
- repo: https://github.com/codespell-project/codespell
68-
rev: "v2.2.6"
68+
rev: "v2.3.0"
6969
hooks:
7070
- id: codespell
7171
exclude: ^Gemfile\.lock$

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/codecov-action@v4.4.0
94+
uses: codecov/codecov-action@v4.4.1
9595
with:
9696
token: ${{ secrets.CODECOV_TOKEN }}
9797
```

docs/pages/guides/style.md

Lines changed: 5 additions & 5 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.4.4"
114+
rev: "v0.4.5"
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.4.4"
204+
rev: "v0.4.5"
205205
hooks:
206206
- id: ruff
207207
args: ["--fix", "--show-fixes"]
@@ -665,7 +665,7 @@ than a list of "valid" words. To use:
665665

666666
```yaml
667667
- repo: https://github.com/codespell-project/codespell
668-
rev: "v2.2.6"
668+
rev: "v2.3.0"
669669
hooks:
670670
- id: codespell
671671
args: ["-L", "sur,nd"]
@@ -810,7 +810,7 @@ can even get all [SchemaStore][]'s plugins with the
810810

811811
```yaml
812812
- repo: https://github.com/abravalheri/validate-pyproject
813-
rev: "v0.17"
813+
rev: "v0.18"
814814
hooks:
815815
- id: validate-pyproject
816816
additional_dependencies: ["validate-pyproject-schema-store[all]"]
@@ -824,7 +824,7 @@ schemas, and you can load them via URL. It work on JSON, YAML, and TOML.
824824

825825
```yaml
826826
- repo: https://github.com/python-jsonschema/check-jsonschema
827-
rev: "0.28.3"
827+
rev: "0.28.4"
828828
hooks:
829829
- id: check-dependabot
830830
- id: check-github-workflows

{{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/codecov-action@v4.4.0
77+
uses: codecov/codecov-action@v4.4.1
7878
with:
7979
token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ repos:
4040
args: [--prose-wrap=always]
4141

4242
- repo: https://github.com/astral-sh/ruff-pre-commit
43-
rev: "v0.4.4"
43+
rev: "v0.4.5"
4444
hooks:
4545
- id: ruff
4646
args: ["--fix", "--show-fixes"]
@@ -76,7 +76,7 @@ repos:
7676
- pytest
7777

7878
- repo: https://github.com/codespell-project/codespell
79-
rev: "v2.2.6"
79+
rev: "v2.3.0"
8080
hooks:
8181
- id: codespell
8282

@@ -112,13 +112,13 @@ repos:
112112
{%- endif %}
113113

114114
- repo: https://github.com/abravalheri/validate-pyproject
115-
rev: "v0.17"
115+
rev: "v0.18"
116116
hooks:
117117
- id: validate-pyproject
118118
additional_dependencies: ["validate-pyproject-schema-store[all]"]
119119

120120
- repo: https://github.com/python-jsonschema/check-jsonschema
121-
rev: "0.28.3"
121+
rev: "0.28.4"
122122
hooks:
123123
{%- if cookiecutter.__ci == "github" %}
124124
- id: check-dependabot

0 commit comments

Comments
 (0)