Skip to content

Commit 5befe48

Browse files
♻️ update internals and bump dependencies (#451)
1 parent 9b9b048 commit 5befe48

12 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ updates:
88
day: "monday"
99
time: "09:00"
1010
timezone: "Europe/Paris"
11-
open-pull-requests-limit: 8
11+
open-pull-requests-limit: 0
1212
commit-message:
1313
prefix: "chore(deps)"
1414
groups:
@@ -45,7 +45,7 @@ updates:
4545
day: "monday"
4646
time: "09:30"
4747
timezone: "Europe/Paris"
48-
open-pull-requests-limit: 3
48+
open-pull-requests-limit: 0
4949
commit-message:
5050
prefix: "chore(ci)"
5151
groups:
@@ -60,7 +60,7 @@ updates:
6060
day: "monday"
6161
time: "10:00"
6262
timezone: "Europe/Paris"
63-
open-pull-requests-limit: 3
63+
open-pull-requests-limit: 0
6464
commit-message:
6565
prefix: "chore(pre-commit)"
6666
groups:

.github/workflows/_publish-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v7
2626

2727
- name: Set up Python ${{ env.PYTHON_VERSION }}
28-
uses: actions/setup-python@v6
28+
uses: actions/setup-python@v7
2929
with:
3030
python-version: ${{ env.PYTHON_VERSION }}
3131

.github/workflows/_publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v7
1919

2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v6
21+
uses: actions/setup-python@v7
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

.github/workflows/_smoke-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
submodules: recursive
3131

3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v6
33+
uses: actions/setup-python@v7
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636

.github/workflows/_static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v7
1818

1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v6
20+
uses: actions/setup-python@v7
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

.github/workflows/_test-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
submodules: recursive
3737

3838
- name: Set up Python ${{ matrix.python-version }}
39-
uses: actions/setup-python@v6
39+
uses: actions/setup-python@v7
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242

.github/workflows/_test-integrations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
submodules: recursive
3030

3131
- name: Set up Python ${{ matrix.python-version }}
32-
uses: actions/setup-python@v6
32+
uses: actions/setup-python@v7
3333
with:
3434
python-version: ${{ matrix.python-version }}
3535

@@ -85,7 +85,7 @@ jobs:
8585
submodules: recursive
8686

8787
- name: Set up Python ${{ matrix.python-version }}
88-
uses: actions/setup-python@v6
88+
uses: actions/setup-python@v7
8989
with:
9090
python-version: ${{ matrix.python-version }}
9191

.github/workflows/_test-regressions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
submodules: recursive
2727

2828
- name: Set up Python ${{ matrix.python-version }}
29-
uses: actions/setup-python@v6
29+
uses: actions/setup-python@v7
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232

.github/workflows/_test-units.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
submodules: recursive
2929

3030
- name: Set up Python ${{ matrix.python-version }}
31-
uses: actions/setup-python@v6
31+
uses: actions/setup-python@v7
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434

@@ -70,7 +70,7 @@ jobs:
7070
submodules: recursive
7171

7272
- name: Set up Python ${{ matrix.python-version }}
73-
uses: actions/setup-python@v6
73+
uses: actions/setup-python@v7
7474
with:
7575
python-version: ${{ matrix.python-version }}
7676

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/charliermarsh/ruff-pre-commit
3-
rev: v0.15.21
3+
rev: v0.15.22
44
hooks:
55
- id: ruff-check
66
args: [ --fix, --exit-non-zero-on-fix]
@@ -31,7 +31,7 @@ repos:
3131
stages: [pre-push]
3232

3333
- repo: https://github.com/pre-commit/mirrors-mypy
34-
rev: v2.2.0
34+
rev: v2.3.0
3535
hooks:
3636
- id: mypy
3737
args: []

0 commit comments

Comments
 (0)