Skip to content

Commit 01b6b84

Browse files
committed
fix(ci): disable hashes in python audit to fix pip-audit resolution
1 parent 4381f1e commit 01b6b84

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/security-scan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: |
5858
for dir in src/server/core src/client/acontext-py; do
5959
cd $dir
60-
uv export --format requirements-txt > reqs.txt
60+
uv export --format requirements-txt --no-hashes --no-dev > reqs.txt
6161
pip-audit -r reqs.txt
6262
rm reqs.txt
6363
cd - > /dev/null

.github/workflows/security-scheduled.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: |
4242
for dir in src/server/core src/client/acontext-py; do
4343
cd $dir
44-
uv export --format requirements-txt > reqs.txt
44+
uv export --format requirements-txt --no-hashes --no-dev > reqs.txt
4545
pip-audit -r reqs.txt
4646
rm reqs.txt
4747
cd - > /dev/null

0 commit comments

Comments
 (0)