ci: use python3.10 for pip-audit (dotenv 1.2.2 requires >=3.10)
Lint / Shell (shellcheck) (push) Successful in 10s
Lint / JS (eslint) (push) Successful in 7s
Lint / Python (ruff) (push) Successful in 5s
Lint / Python deps (pip-audit) (push) Failing after 7s
Lint / Secret scan (gitleaks) (push) Successful in 6s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-21 13:48:53 -04:00
parent 0a1c90ef86
commit d4f3563982
+4 -4
View File
@@ -55,13 +55,13 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Install pip-audit - name: Install Python 3.10 and pip-audit
run: | run: |
apt-get update -qq && apt-get install -y -qq python3-pip python3-venv apt-get update -qq && apt-get install -y -qq python3.10 python3.10-venv python3-pip
python3 -m pip install pip-audit python3.10 -m pip install pip-audit
- name: Audit matrixbot dependencies - name: Audit matrixbot dependencies
run: python3 -m pip_audit -r matrixbot/requirements.txt run: python3.10 -m pip_audit -r matrixbot/requirements.txt
secret-scan: secret-scan:
name: Secret scan (gitleaks) name: Secret scan (gitleaks)