Batch Dependabot Fixes & Security Workflow#110
Open
tmcneil-mdb wants to merge 3 commits intodevelopmentfrom
Open
Batch Dependabot Fixes & Security Workflow#110tmcneil-mdb wants to merge 3 commits intodevelopmentfrom
tmcneil-mdb wants to merge 3 commits intodevelopmentfrom
Conversation
dacharyc
approved these changes
May 7, 2026
Collaborator
dacharyc
left a comment
There was a problem hiding this comment.
This is awesome - thank you for adding these audit workflows 👏
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Resolves all 11 open Dependabot security alerts (#52–#62) and adds per-framework audit workflows to catch vulnerabilities on future PRs.
Dependency Fixes
TanStack App (
frameworks/javascript/tanstack/app/)vite7.3.17.3.2postcss(transitive via vite)@tanstack/react-start1.167.121.167.65@tanstack/react-router1.168.71.169.2@tanstack/router-plugin1.167.81.167.35@tanstack/react-router-devtools1.166.111.166.13TanStack Bluehawk (
frameworks/javascript/tanstack/)lodash(transitive via chevrotain/bluehawk)4.17.214.18.1(via npm override)Python FastAPI (
mflix/server/python-fastapi/)python-multipart0.0.220.0.27New Audit Workflows
Added audit workflows that run on PRs when that framework's code changes.
These are separate from the test workflows, no DB setup, no heavy infrastructure, just lockfile scanning.
Files Added
.github/workflows/audit-tanstack.yml— Runsnpm audit --jsonon both the app andbluehawk lockfiles. Fails on high/critical vulnerabilities.
.github/workflows/audit-python-fastapi.yml— Runspip-audit --format jsononrequirements.txt. Fails on any vulnerability..github/scripts/generate-audit-summary-npm.sh— Parses npm audit JSON and writes aformatted markdown summary to
$GITHUB_STEP_SUMMARY..github/scripts/generate-audit-summary-pip.sh— Parses pip-audit JSON and writes aformatted markdown summary to
$GITHUB_STEP_SUMMARY.How the workflows work
How to Test
Dependency fixes
Known Limitations