build(deps): bump the pip group across 1 directory with 10 updates #6680
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Dependency Review' | |
| on: | |
| pull_request: | |
| branches: [ master, develop ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| dependency-review: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Checkout Repository' | |
| uses: actions/checkout@v6.0.2 | |
| - name: 'Dependency Review' | |
| uses: actions/dependency-review-action@v4 | |
| with: | |
| # GHSA-gr75-jv2w-4656: LangChain path traversal in file-search middleware/loaders. | |
| # Patched only in langchain 1.3.9 (breaking major upgrade). The chatbot uses no | |
| # document loaders, file-search middleware, or hub prompt pulls (only langchain.agents, | |
| # langchain_core.*, langchain_ollama), so the vulnerable code paths are unreachable. | |
| # Accepted until the planned langchain 1.x migration. Approved by @mlodic. | |
| allow-ghsas: GHSA-gr75-jv2w-4656 |