Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/vuln-remediation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Vulnerability Remediation

on:
schedule:
- cron: '0 3 * * 3'
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
remediate:
uses: kernel/security-workflows/.github/workflows/vuln-remediation.yml@main
with:
setup-bun: true
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Workflow configures bun but project uses yarn

Medium Severity

The setup-bun: true input is passed to the reusable workflow, but this project uses yarn as its package manager (as declared by packageManager: "yarn@1.22.22" in package.json, the presence of yarn.lock, and all existing CI workflows using actions/setup-node). This mismatch could cause the remediation pipeline to install dependencies with the wrong package manager, leading to incorrect lockfile updates or failed runs.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit cfcca41. Configure here.

secrets: inherit
1 change: 1 addition & 0 deletions socket.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version: 2
Loading