Skip to content

Commit 8a81c41

Browse files
committed
MESH-2092 dependabot updates
1 parent 3b8823c commit 8a81c41

7 files changed

Lines changed: 1481 additions & 1195 deletions

File tree

.gitallowed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ poetry.lock:.*asttokens = ">=2.1.0"
1919

2020
src/mesh_sandbox/common/messaging.py:.*def try_parse_authorisation_token\(auth_token: str\) -> Optional\[AuthoriseHeaderParts\]:
2121
src/mesh_sandbox/common/messaging.py:.*auth_token = auth_token.*
22+
poetry.lock:.*:pytokens = ">=0.1.10"

.github/workflows/merge-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fetch-depth: 0
2121

2222
- name: setup python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version-file: "pyproject.toml"
2626

@@ -123,7 +123,7 @@ jobs:
123123
find . -type f | xargs chmod g+w
124124
125125
- name: setup python
126-
uses: actions/setup-python@v5
126+
uses: actions/setup-python@v6
127127
with:
128128
python-version-file: "pyproject.toml"
129129

.github/workflows/pull-request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
PR_BRANCH: ${{ github.head_ref }}
4848

4949
- name: setup python
50-
uses: actions/setup-python@v5
50+
uses: actions/setup-python@v6
5151
with:
5252
python-version-file: "pyproject.toml"
5353

@@ -179,7 +179,7 @@ jobs:
179179
PR_BRANCH: ${{ github.head_ref }}
180180

181181
- name: setup python
182-
uses: actions/setup-python@v5
182+
uses: actions/setup-python@v6
183183
with:
184184
python-version-file: "pyproject.toml"
185185

@@ -215,7 +215,7 @@ jobs:
215215
run: make mypy
216216

217217
- name: hadolint
218-
uses: hadolint/hadolint-action@d292784f8f3eacda47060b259a580467b0ba410c
218+
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5
219219
with:
220220
dockerfile: "Dockerfile"
221221
recursive: true
@@ -266,7 +266,7 @@ jobs:
266266
PR_BRANCH: ${{ github.head_ref }}
267267

268268
- name: setup python
269-
uses: actions/setup-python@v5
269+
uses: actions/setup-python@v6
270270
with:
271271
python-version-file: "pyproject.toml"
272272

.github/workflows/scheduled-combine-dependabot-prs.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ name: Combine Dependabot PRs
33
on:
44
workflow_dispatch: # allows you to manually trigger the workflow
55
inputs:
6-
ci_required:
7-
type: choice
8-
description: Require a successful build before branches are included
9-
options:
10-
- 'YES'
11-
- 'NO'
12-
required: false
13-
default: 'YES'
6+
ci_required:
7+
type: choice
8+
description: Require a successful build before branches are included
9+
options:
10+
- "YES"
11+
- "NO"
12+
required: false
13+
default: "YES"
1414

1515
# The minimum permissions required to run this Action
1616
permissions:
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
- name: combine-prs
2727
id: combine-prs
28-
uses: actions/combine-prs@v5.2.0
28+
uses: github/combine-prs@v5.2.0
2929
with:
3030
ci_required: ${{ inputs.ci_required == 'YES' }}
3131
labels: dependencies

poetry.lock

Lines changed: 937 additions & 742 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,19 @@ packages = [
99
]
1010
readme = "README.md"
1111

12+
[tool.poetry.requires-plugins]
13+
poetry-plugin-export = ">=1.8"
14+
1215
[tool.poetry.dependencies]
1316
# core dependencies
1417

1518
python = ">=3.11,<3.14.0"
1619
types-python-dateutil = "^2.8.9"
1720
python-dateutil = "^2.8.2"
18-
cryptography = ">=44.0.1,<45"
19-
fastapi = ">=0.110.0,<0.118.0"
21+
cryptography = ">=44.0.1,<47"
22+
fastapi = ">=0.110.0,<0.119.0"
2023
gunicorn = ">=21.2,<24.0"
21-
uvicorn = ">=0.23.2,<0.36.0"
24+
uvicorn = ">=0.23.2,<0.38.0"
2225
mesh-client = "^4.0.1"
2326
typing-extensions = ">=4.10.0"
2427

@@ -27,11 +30,11 @@ typing-extensions = ">=4.10.0"
2730
# ci / testing dependencies
2831
petname = "^2.6"
2932
pytest = ">=7.2,<9.0"
30-
pytest-asyncio = ">=0.16,<1.2"
33+
pytest-asyncio = ">=0.16,<1.3"
3134
Mesh-Client = "^4.0.1"
3235
mypy = "^1.1.1"
3336
coverage = ">=6.5,<8.0"
34-
httpx = ">=0.27.0,<0.28"
37+
httpx = ">=0.27.0,<0.29"
3538
types-requests = "^2.28.11.4"
3639
pyOpenSSL = ">=24,<26"
3740
types-pyOpenSSL = "^24.0.0.20240130"

0 commit comments

Comments
 (0)