fix(infra): harden pydantic test workflow against command injection (#33446)

This commit is contained in:
Cole Murray
2025-10-20 07:35:48 -07:00
committed by GitHub
parent 965dac74e5
commit 557fc9a817

View File

@@ -51,7 +51,9 @@ jobs:
- name: "🔄 Install Specific Pydantic Version"
shell: bash
run: VIRTUAL_ENV=.venv uv pip install pydantic~=${{ inputs.pydantic-version }}
env:
PYDANTIC_VERSION: ${{ inputs.pydantic-version }}
run: VIRTUAL_ENV=.venv uv pip install "pydantic~=$PYDANTIC_VERSION"
- name: "🧪 Run Core Tests"
shell: bash