Dependabot Alerts Update
Automatically fetch Dependabot security alerts from GitHub and update vulnerable packages to secure versions.
Workflow
1. Fetch Dependabot Alerts
Use GitHub REST API to fetch open Dependabot alerts:
# Get repository owner and name from git remote
git remote get-url origin
# Fetch alerts (requires GITHUB_TOKEN)
curl -H "Authorization: token $GITHUB_TOKEN" \
-H "Accept: application/vnd.github+json" \
"https://api.github.com/repos/{owner}/{repo}/dependabot/alerts?state=open"
Or use the GitHub CLI if available:
gh api repos/{owner}/{repo}/dependabot/alerts --jq '.[] | select(.state == "open")'
Required environment variable: GITHUB_TOKEN with security_events scope.
2. Parse and Categorize Alerts
For each alert, extract:
- Package name (
dependency.package.name) - Severity (
security_advisory.severity:critical,high,moderate,low) - Vulnerable versions (
security_vulnerability.vulnerable_version_range) - CVE/GHSA ID (
security_advisory.ghsa_idorsecurity_advisory.cve_id) - Manifest path (
dependency.manifest_path)
Group alerts by:
- Direct dependencies (in package.json files)
- Transitive dependencies (will be resolved via direct dependency updates)
- Severity (prioritize critical/high first)
3. Research Secure Versions
For each vulnerable package, determine the minimum secure version:
Check alert API response - The
security_vulnerability.first_patched_versionfield often contains the fixed version:gh api repos/{owner}/{repo}/dependabot/alerts/{alert_number} | jq '.security_vulnerability.first_patched_version'Search for security advisories:
- GitHub Security Advisories:
https://github.com/advisories?query={package} - npm security:
npm audit {package} - Snyk:
https://security.snyk.io/package/npm/{package}
- GitHub Security Advisories:
Web search for CVE details and fixed versions:
- Search:
{package} {CVE_ID} fixed version - Search:
{package} {GHSA_ID} fixed version - Check package changelog/release notes
- Search:
Verify compatibility:
- Check if secure version is compatible with current version range
- Consider breaking changes in major version updates
- For peer dependencies, ensure the providing package is updated
4. Update package.json Files
Identify All package.json Files
For monorepos, find all package.json files:
find . -name "package.json" -not -path "*/node_modules/*" -not -path "*/.git/*"
Update Strategy
- Direct dependencies: Update version in package.json
- Transitive dependencies: Update parent package that brings in the vulnerable dependency
- Workspace dependencies: Update in root or specific workspace package
Update Pattern
For each vulnerable package found in package.json:
// Before
"package-name": "^1.2.3"
// After (if 1.5.0 fixes the vulnerability)
"package-name": "^1.5.0"
Use ^ prefix to allow patch/minor updates unless major version is required.
Monorepo Considerations
- pnpm workspaces: Update in the specific workspace package.json
- npm workspaces: Same approach
- Lerna: Update in individual package.json files
- Root dependencies: Update root package.json if used across workspaces
5. Handle Special Cases
Multiple Versions of Same Package
If the same package appears in multiple package.json files with different versions:
- Update all instances to the same secure version
- Ensure compatibility across workspaces
Peer Dependencies
For peer dependencies, update the package that provides the dependency, not the peer dependency declaration itself.
Lock Files
After updating package.json:
- pnpm: Run
pnpm installto updatepnpm-lock.yaml - npm: Run
npm installto updatepackage-lock.json - yarn: Run
yarn installto updateyarn.lock
Note: Some example directories may have separate lock files that need individual updates.
6. Verification
After updates:
Check remaining alerts:
gh api repos/{owner}/{repo}/dependabot/alerts?state=openRun audit:
pnpm audit # or npm audit / yarn auditTest build:
pnpm run build
Implementation
Using the Script
A Node.js script is provided in scripts/fetch_and_fix_alerts.mjs that automates the workflow:
# Set GitHub token
export GITHUB_TOKEN=your_token_here
# Dry run to see what would be updated
node scripts/fetch_and_fix_alerts.mjs --dry-run
# Actually update packages
node scripts/fetch_and_fix_alerts.mjs
# Or specify repo explicitly
node scripts/fetch_and_fix_alerts.mjs --owner OWNER --repo REPO --token TOKEN
The script:
- Auto-detects repository from git remote
- Fetches all open Dependabot alerts
- Finds packages in package.json files
- Updates versions (uses
first_patched_versionfrom API when available) - Preserves version prefixes (^, ~)
Requirements: Node.js 18+ (uses native fetch API, no external dependencies)
Manual Implementation
If implementing manually or the script needs customization:
# Pseudocode workflow
alerts = fetch_dependabot_alerts(owner, repo, token)
vulnerable_packages = parse_alerts(alerts)
for package in vulnerable_packages:
secure_version = research_secure_version(package, cve_id)
package_json_files = find_package_json_with_package(package)
for pkg_json in package_json_files:
update_package_version(pkg_json, package, secure_version)
run_package_manager_install()
verify_alerts_resolved()
Common Vulnerabilities and Fixes
Critical/High Priority
- happy-dom: Update
vitestto latest (includes happy-dom@20.0.2+) - react-router: Update to 7.5.2+ for security fixes
- js-yaml: Update to 4.1.1+ (prototype pollution fix)
- @modelcontextprotocol/sdk: Update to 1.25.2+ (ReDoS fix)
- langchain: Update to 1.2.3+ (serialization injection fix)
- storybook: Update to 8.6.15+ (environment variable exposure fix)
Transitive Dependencies
Many vulnerabilities (h3, qs, tar-fs, node-forge, glob, jws, ipx, tar, esbuild, http-proxy-middleware, undici, on-headers, tmp, diff) are transitive and will be resolved when direct dependencies are updated.
Error Handling
- API rate limits: Implement exponential backoff for GitHub API calls
- Missing GITHUB_TOKEN: Prompt user to set token or use GitHub CLI authentication
- Package not found: Skip and log warning
- Version conflicts: Report conflicts and suggest manual resolution
- Build failures: Rollback changes if build fails after updates
Output
After processing, provide a summary listing:
- All alerts processed (grouped by severity)
- Packages updated with old → new versions
- Files modified
- Transitive dependencies that should be resolved automatically
- Remaining alerts (if any that couldn't be auto-fixed)
- Next steps:
- Run package manager install:
pnpm install(ornpm install/yarn install) - Verify with audit:
pnpm audit - Test build:
pnpm run build - Check remaining alerts in GitHub
- Run package manager install:
GitHub API Authentication
The script requires a GitHub token with security_events scope:
Create a Personal Access Token:
- Go to GitHub Settings → Developer settings → Personal access tokens → Tokens (classic)
- Generate new token with
security_eventsscope - Or use Fine-grained token with "Read Dependabot alerts" permission
Set the token:
export GITHUB_TOKEN=your_token_hereOr use GitHub CLI (alternative):
gh auth login # Then use: gh api repos/{owner}/{repo}/dependabot/alerts
Source: livesession/xyd — distributed by TomeVault.