Skip to content

Commit 7927bab

Browse files
chore(deps): bump versions (#708)
[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 e3f475d commit 7927bab

File tree

9 files changed

+21
-21
lines changed

9 files changed

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

docs/pages/guides/gha_basic.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ lint:
6666
name: Lint
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: actions/checkout@v5
69+
- uses: actions/checkout@v6
7070
- uses: actions/setup-python@v6
7171
with:
7272
python-version: "3.x"
@@ -104,7 +104,7 @@ tests:
104104
- "3.14"
105105
name: Check Python ${{ matrix.python-version }}
106106
steps:
107-
- uses: actions/checkout@v5
107+
- uses: actions/checkout@v6
108108
with:
109109
fetch-depth: 0 # Only needed if using setuptools-scm
110110
@@ -516,7 +516,7 @@ jobs:
516516
# more here if you have more situations to detect
517517
518518
steps:
519-
- uses: actions/checkout@v5
519+
- uses: actions/checkout@v6
520520
521521
- name: Changed test-related files
522522
if: github.event_name == 'pull_request'

docs/pages/guides/gha_pure.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ the name "CI/CD", you can just combine the two `on` dicts.
7070
dist:
7171
runs-on: ubuntu-latest
7272
steps:
73-
- uses: actions/checkout@v5
73+
- uses: actions/checkout@v6
7474
with:
7575
fetch-depth: 0
7676
@@ -124,7 +124,7 @@ later in the upload action for the release job, as well).
124124
>
125125
> ```yaml
126126
> steps:
127-
> - uses: actions/checkout@v5
127+
> - uses: actions/checkout@v6
128128
> - uses: hynek/build-and-inspect-python-package@v2
129129
> ```
130130
>
@@ -229,7 +229,7 @@ jobs:
229229
dist:
230230
runs-on: ubuntu-latest
231231
steps:
232-
- uses: actions/checkout@v5
232+
- uses: actions/checkout@v6
233233
with:
234234
fetch-depth: 0
235235
@@ -282,7 +282,7 @@ jobs:
282282
dist:
283283
runs-on: ubuntu-latest
284284
steps:
285-
- uses: actions/checkout@v5
285+
- uses: actions/checkout@v6
286286
with:
287287
fetch-depth: 0
288288

docs/pages/guides/gha_wheels.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ make_sdist:
7979
name: Make SDist
8080
runs-on: ubuntu-latest
8181
steps:
82-
- uses: actions/checkout@v5
82+
- uses: actions/checkout@v6
8383
with:
8484
fetch-depth: 0 # Optional, use if you use setuptools_scm
8585
submodules: true # Optional, use if you have submodules
@@ -120,7 +120,7 @@ build_wheels:
120120
- macos-latest
121121
122122
steps:
123-
- uses: actions/checkout@v5
123+
- uses: actions/checkout@v6
124124
with:
125125
fetch-depth: 0
126126
submodules: true

docs/pages/guides/style.md

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

141141
```yaml
142142
- repo: https://github.com/astral-sh/ruff-pre-commit
143-
rev: "v0.14.5"
143+
rev: "v0.14.6"
144144
hooks:
145145
# id: ruff-check would go here if using both
146146
- id: ruff-format
@@ -230,7 +230,7 @@ pre-commit hook.
230230
231231
```yaml
232232
- repo: https://github.com/astral-sh/ruff-pre-commit
233-
rev: "v0.14.5"
233+
rev: "v0.14.6"
234234
hooks:
235235
- id: ruff-check
236236
args: ["--fix", "--show-fixes"]
@@ -576,7 +576,7 @@ when clearly better (please always use them, they are faster) if you set
576576

577577
```yaml
578578
- repo: https://github.com/asottile/pyupgrade
579-
rev: "v3.21.1"
579+
rev: "v3.21.2"
580580
hooks:
581581
- id: pyupgrade
582582
args: ["--py39-plus"]
@@ -831,7 +831,7 @@ following pre-commit config:
831831

832832
```yaml
833833
- repo: https://github.com/pre-commit/mirrors-clang-format
834-
rev: "v21.1.5"
834+
rev: "v21.1.6"
835835
hooks:
836836
- id: clang-format
837837
types_or: [c++, c, cuda]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Format
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 0
2828
- uses: actions/setup-python@v6
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353

5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
with:
5757
fetch-depth: 0
5858

{{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
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626

2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 0
3131

{{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
@@ -23,7 +23,7 @@ jobs:
2323
name: Make SDist
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0
2929

@@ -50,7 +50,7 @@ jobs:
5050
- macos-latest
5151

5252
steps:
53-
- uses: actions/checkout@v5
53+
- uses: actions/checkout@v6
5454
with:
5555
fetch-depth: 0
5656

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

Lines changed: 2 additions & 2 deletions
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.14.5"
46+
rev: "v0.14.6"
4747
hooks:
4848
- id: ruff-check
4949
args: ["--fix", "--show-fixes"]
@@ -52,7 +52,7 @@ repos:
5252
{%- if cookiecutter.backend in ["pybind11", "skbuild", "mesonpy"] %}
5353

5454
- repo: https://github.com/pre-commit/mirrors-clang-format
55-
rev: "v21.1.5"
55+
rev: "v21.1.6"
5656
hooks:
5757
- id: clang-format
5858
types_or: [c++, c, cuda]

0 commit comments

Comments
 (0)