Skip to content

Commit eadf2fd

Browse files
chore(deps): bump versions (#456)
[create-pull-request] automated change Co-authored-by: henryiii <[email protected]>
1 parent 2f1d453 commit eadf2fd

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
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.5.2"
32+
rev: "v0.5.6"
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.10.1"
46+
rev: "v1.11.1"
4747
hooks:
4848
- id: mypy
4949
files: "(src|tests)"

docs/pages/guides/gha_pure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ publish:
154154
path: dist
155155
156156
- name: Generate artifact attestation for sdist and wheel
157-
uses: actions/attest-build-provenance@v1.3.3
157+
uses: actions/attest-build-provenance@v1.4.0
158158
with:
159159
subject-path: "dist/*"
160160
@@ -252,7 +252,7 @@ jobs:
252252
path: dist
253253
254254
- name: Generate artifact attestation for sdist and wheel
255-
uses: actions/attest-build-provenance@v1.3.3
255+
uses: actions/attest-build-provenance@v1.4.0
256256
with:
257257
subject-path: "dist/*"
258258

docs/pages/guides/gha_wheels.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ build_wheels:
114114
fetch-depth: 0
115115
submodules: true
116116
117-
- uses: pypa/cibuildwheel@v2.19
117+
- uses: pypa/cibuildwheel@v2.20
118118
119119
- name: Upload wheels
120120
uses: actions/upload-artifact@v4
@@ -178,7 +178,7 @@ upload_all:
178178
merge-multiple: true
179179
180180
- name: Generate artifact attestations
181-
uses: actions/attest-build-provenance@v1.3.3
181+
uses: actions/attest-build-provenance@v1.4.0
182182
with:
183183
subject-path: "dist/*"
184184

docs/pages/guides/style.md

Lines changed: 6 additions & 6 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.5.2"
114+
rev: "v0.5.6"
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.5.2"
204+
rev: "v0.5.6"
205205
hooks:
206206
- id: ruff
207207
args: ["--fix", "--show-fixes"]
@@ -392,7 +392,7 @@ the flake8 addition for pre-commit, with the `bugbear` plugin:
392392

393393
```yaml
394394
- repo: https://github.com/pycqa/flake8
395-
rev: "7.1.0"
395+
rev: "7.1.1"
396396
hooks:
397397
- id: flake8
398398
additional_dependencies: [flake8-bugbear]
@@ -490,7 +490,7 @@ when clearly better (please always use them, they are faster) if you set
490490

491491
```yaml
492492
- repo: https://github.com/asottile/pyupgrade
493-
rev: "v3.16.0"
493+
rev: "v3.17.0"
494494
hooks:
495495
- id: pyupgrade
496496
args: ["--py38-plus"]
@@ -535,7 +535,7 @@ The MyPy addition for pre-commit:
535535

536536
```yaml
537537
- repo: https://github.com/pre-commit/mirrors-mypy
538-
rev: "v1.10.1"
538+
rev: "v1.11.1"
539539
hooks:
540540
- id: mypy
541541
files: src
@@ -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.29.0"
827+
rev: "0.29.1"
828828
hooks:
829829
- id: check-dependabot
830830
- id: check-github-workflows

{{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
@@ -49,7 +49,7 @@ jobs:
4949
path: dist
5050

5151
- name: Generate artifact attestation for sdist and wheel
52-
uses: actions/attest-build-provenance@v1.3.3
52+
uses: actions/attest-build-provenance@v1.4.0
5353
with:
5454
subject-path: "dist/*"
5555

{{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
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
fetch-depth: 0
5050

51-
- uses: pypa/cibuildwheel@v2.19
51+
- uses: pypa/cibuildwheel@v2.20
5252

5353
- name: Upload wheels
5454
uses: actions/upload-artifact@v4
@@ -74,7 +74,7 @@ jobs:
7474
merge-multiple: true
7575

7676
- name: Generate artifact attestations
77-
uses: actions/attest-build-provenance@v1.3.3
77+
uses: actions/attest-build-provenance@v1.4.0
7878
with:
7979
subject-path: "dist/*"
8080

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

Lines changed: 3 additions & 3 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.5.2"
43+
rev: "v0.5.6"
4444
hooks:
4545
- id: ruff
4646
args: ["--fix", "--show-fixes"]
@@ -67,7 +67,7 @@ repos:
6767
{%- endif %}
6868

6969
- repo: https://github.com/pre-commit/mirrors-mypy
70-
rev: "v1.10.1"
70+
rev: "v1.11.1"
7171
hooks:
7272
- id: mypy
7373
files: src|tests
@@ -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.29.0"
121+
rev: "0.29.1"
122122
hooks:
123123
{%- if cookiecutter.__ci == "github" %}
124124
- id: check-dependabot

0 commit comments

Comments
 (0)