Skip to content

Commit 6129bd2

Browse files
chore(deps): bump versions (#408)
[create-pull-request] automated change Co-authored-by: henryiii <[email protected]>
1 parent 371c6f4 commit 6129bd2

File tree

6 files changed

+11
-11
lines changed

6 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.3.5"
32+
rev: "v0.3.7"
3333
hooks:
3434
- id: ruff
3535
args: ["--fix", "--show-fixes"]

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.2.0
94+
uses: codecov/codecov-action@v4.3.0
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.3.5"
114+
rev: "v0.3.7"
115115
hooks:
116116
# id: ruff would go here if using both
117117
- id: ruff-format
@@ -141,7 +141,7 @@ Here is the snippet to add Black to your `.pre-commit-config.yml`:
141141
142142
```yaml
143143
- repo: https://github.com/psf/black-pre-commit-mirror
144-
rev: "24.3.0"
144+
rev: "24.4.0"
145145
hooks:
146146
- id: black
147147
```
@@ -201,7 +201,7 @@ pre-commit hook.
201201
202202
```yaml
203203
- repo: https://github.com/astral-sh/ruff-pre-commit
204-
rev: "v0.3.5"
204+
rev: "v0.3.7"
205205
hooks:
206206
- id: ruff
207207
args: ["--fix", "--show-fixes"]
@@ -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.1"
827+
rev: "0.28.2"
828828
hooks:
829829
- id: check-dependabot
830830
- id: check-github-workflows

docs/pages/guides/tasks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ On GitHub Actions or Azure, pipx is available by default, so you should use
7575
action:
7676

7777
```yaml
78-
- uses: wntrblm/nox@2024.03.02
78+
- uses: wntrblm/nox@2024.04.15
7979
```
8080
8181
You can now access all current versions of Python from nox. At least in GitHub
@@ -84,7 +84,7 @@ your logs, or set `env: FORCE_COLOR: 3`[^force_color]. If you'd like to
8484
customize the versions of Python prepared for you, then use input like this:
8585

8686
```yaml
87-
- uses: wntrblm/nox@2024.03.02
87+
- uses: wntrblm/nox@2024.04.15
8888
with:
8989
python-versions: "3.8, 3.9, 3.10, 3.11, 3.12, pypy-3.9, pypy-3.10"
9090
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ jobs:
7676
--durations=20
7777
7878
- name: Upload coverage report
79-
uses: codecov/codecov-action@v4.2.0
79+
uses: codecov/codecov-action@v4.3.0
8080
with:
8181
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
@@ -40,7 +40,7 @@ repos:
4040
args: [--prose-wrap=always]
4141

4242
- repo: https://github.com/astral-sh/ruff-pre-commit
43-
rev: "v0.3.5"
43+
rev: "v0.3.7"
4444
hooks:
4545
- id: ruff
4646
args: ["--fix", "--show-fixes"]
@@ -118,7 +118,7 @@ repos:
118118
additional_dependencies: ["validate-pyproject-schema-store[all]"]
119119

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

0 commit comments

Comments
 (0)