mirror of
https://github.com/cloudflare/vinext.git
synced 2026-05-09 08:25:34 +02:00
[GH-ISSUE #416] ci: add dependency review / vulnerability scanning for PRs #92
Labels
No labels
enhancement
enhancement
good first issue
help wanted
nextjs-tracking
nextjs-tracking
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/vinext#92
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Divkix on GitHub (Mar 10, 2026).
Original GitHub issue: https://github.com/cloudflare/vinext/issues/416
Problem
The CI pipeline currently has no dependency vulnerability scanning. There is no
pnpm audit, no Dependabot configuration, and no OSV-based scanning. This means vulnerable dependencies can be introduced without any automated detection.Proposed Solution
CI job: Add a
dependenciesjob toci.ymlthat runspnpm audit --audit-level high. Initially advisory (continue-on-error) to avoid blocking PRs while we assess the baseline.Dependabot: Create
.github/dependabot.ymlto automatically open PRs for dependency updates:Acceptance Criteria
pnpm auditruns in CI on every PR@Divkix commented on GitHub (Mar 10, 2026):
Closing — premature for an unreleased project. Will revisit when vinext ships to npm.