Skip to content

Commit d13472e

Browse files
committed
Merge branch 'main' into next-major
2 parents fed7736 + 621c8c9 commit d13472e

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/precommitVersionBumps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
git pull origin next
3434
3535
- name: Cache NPM dependencies
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: ~/.npm
3939
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
4040
restore-keys: |
4141
${{ runner.os }}-node
4242
4343
- name: Cache Python dependencies
44-
uses: actions/cache@v4
44+
uses: actions/cache@v5
4545
with:
4646
path: ~/.cache/pip
4747
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

.github/workflows/semanticVersionBump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
persist-credentials: false
3333

3434
- name: Cache NPM dependencies
35-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3636
with:
3737
path: ~/.npm
3838
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

requirements.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# dev and test
22
# ------------
3-
pytest==9.0.1
3+
pytest==9.0.2
44
pytest_mock==3.15.1
55

66
# Code linters, formatters, and security scanners
77
# ------------
8-
black==25.9.0
8+
black==26.1.0
99
flake8==7.3.0
1010
flake8-coding==1.3.2
11-
pre-commit==4.5.0
12-
isort==7.0.0
13-
mypy==1.18.2
14-
pylint==4.0.4
15-
bandit==1.8.6
11+
pre-commit==4.5.1
12+
isort==8.0.1
13+
mypy==1.19.1
14+
pylint==4.0.5
15+
bandit==1.9.4
1616
pydocstringformatter==0.7.5
17-
tox==4.32.0
18-
codespell==2.4.1
17+
tox==4.47.0
18+
codespell==2.4.2
1919

2020
# package dependencies
21-
python-dotenv==1.2.1
21+
python-dotenv==1.2.2
2222
pydantic==2.12.5

0 commit comments

Comments
 (0)