Skip to content

Commit fde33b0

Browse files
authored
Merge branch 'main' into add-verify-hash
2 parents 63ab8d3 + e8da565 commit fde33b0

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

.github/workflows/lint-pr-title.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
- edited
88
- synchronize
99

10+
concurrency:
11+
group: lint-pr-title-pr-${{ github.event.pull_request.number }}
12+
cancel-in-progress: true
13+
1014
jobs:
1115
lint-pr-title:
1216
name: Lint PR title

.github/workflows/qa.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: QA
22

33
on: pull_request
44

5+
concurrency:
6+
group: qa-pr-${{ github.event.pull_request.number }}
7+
cancel-in-progress: true
8+
59
jobs:
610
qa:
711
name: QA
@@ -16,7 +20,7 @@ jobs:
1620
- name: Clone repository
1721
uses: actions/checkout@v5
1822
- name: Use Python
19-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2024
with:
2125
python-version: ${{ matrix.version }}
2226
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fetch-depth: '0'
2323
token: ${{ secrets.TOKEN_GITHUB_TO_GITHUB_REPOSITORIES_RW }}
2424
- name: Use Python
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: '3.13'
2828
- name: Install dependencies

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ readme = "README.md"
88
license = "MIT"
99
dependencies = [
1010
"aiohttp==3.12.15",
11-
"testcontainers==4.12.0",
11+
"testcontainers==4.13.0",
1212
]
1313

1414
[dependency-groups]
1515
dev = [
16-
"pytest==8.4.1",
16+
"pytest==8.4.2",
1717
"pytest-timeout==2.4.0",
18-
"pytest-asyncio==1.1.0",
19-
"pytest-cov==6.2.1",
20-
"ruff==0.12.11",
18+
"pytest-asyncio==1.2.0",
19+
"pytest-cov==7.0.0",
20+
"ruff==0.13.0",
2121
"bandit==1.8.6",
22-
"pyright==1.1.404",
23-
"twine==6.1.0",
22+
"pyright==1.1.405",
23+
"twine==6.2.0",
2424
]
2525

2626
[build-system]

0 commit comments

Comments
 (0)