Skip to content

Commit 44aaa88

Browse files
committed
Merge branch 'main' into next
2 parents 02ddc56 + ebb8626 commit 44aaa88

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
lines changed

.github/workflows/precommitVersionBumps.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
with:
2727
persist-credentials: false
2828

@@ -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/**') }}
@@ -72,7 +72,7 @@ jobs:
7272
SITE_PACKAGES_PATH: ${{ env.SITE_PACKAGES_PATH }}
7373

7474
- name: Setup Node.js environment
75-
uses: actions/setup-node@v5
75+
uses: actions/setup-node@v6
7676
with:
7777
node-version: "20.9.0"
7878

.github/workflows/pullRequestController.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ jobs:
6060
runs-on: ubuntu-latest
6161
steps:
6262
- name: Checkout
63-
uses: actions/checkout@v5
63+
uses: actions/checkout@v6
6464

6565
- name: Semantic Release
66-
uses: cycjimmy/semantic-release-action@v5
66+
uses: cycjimmy/semantic-release-action@v6
6767
id: semantic
6868
with:
6969
dry_run: true
@@ -104,7 +104,7 @@ jobs:
104104
steps:
105105
- name: Checkout code
106106
id: checkout
107-
uses: actions/checkout@v5
107+
uses: actions/checkout@v6
108108

109109
- name: Check for changed files
110110
id: file_changes

.github/workflows/pushMain.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- name: Checkout code
2121
id: checkout
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
- name: Merge main into next
2525
uses: ./.github/actions/merge-branch
@@ -56,13 +56,13 @@ jobs:
5656
GITHUB_TOKEN: ${{ secrets.PAT }}
5757

5858
steps:
59-
- uses: actions/checkout@v5
59+
- uses: actions/checkout@v6
6060
id: checkout
6161
with:
6262
persist-credentials: false
6363

6464
- name: Semantic Release
65-
uses: cycjimmy/semantic-release-action@v5
65+
uses: cycjimmy/semantic-release-action@v6
6666
id: semantic
6767
with:
6868
branches: |

.github/workflows/semanticVersionBump.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
PACKAGE_PATH: ${{ github.workspace }}/app/
2525

2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
with:
2929
persist-credentials: false
3030

3131
- name: Cache NPM dependencies
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: ~/.npm
3535
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -42,7 +42,7 @@ jobs:
4242
python-version: "3.13"
4343

4444
- name: Setup Node.js environment
45-
uses: actions/setup-node@v5
45+
uses: actions/setup-node@v6
4646
with:
4747
node-version: "20.9.0"
4848

.github/workflows/testsPython.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- name: Checkout code
2323
id: checkout
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525

2626
- name: Run Python tests
2727
uses: ./.github/actions/tests/python

requirements/in/base.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
-r constraints.in
1111

12-
python-dotenv==1.1.1
13-
openai==2.0.0
12+
openai==2.8.1
13+
python-dotenv==1.2.1
1414
PyMySQL==1.1.2
1515
pydantic==2.12.2

requirements/in/local.in

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ pip-tools==7.5.0
1919
black==25.9.0
2020
flake8==7.3.0
2121
flake8-coding==1.3.2
22-
pre-commit==4.3.0
23-
isort==6.0.1
24-
mypy==1.18.2
22+
pre-commit==4.5.0
23+
isort==7.0.0
24+
mypy==1.19.0
2525
pylint==4.0.1
26-
bandit==1.8.6
26+
bandit==1.9.2
2727
pydocstringformatter==0.7.5
28-
tox==4.31.0
28+
tox==4.32.0
2929
codespell==2.4.1
30-
coverage==7.11.0
30+
coverage==7.12.0

0 commit comments

Comments
 (0)