bun install. Unless you skip the audit, Talos first runs bun install --lockfile-only, audits the resolved dependency graph with the same audit engine used by security:check, and blocks the install when matching vulnerabilities are found.
Usage
Examples
Install dependencies after auditing for high and critical vulnerabilities:bun install directly:
Options
Audit flow
Without--skip-audit, the command resolves the dependency graph with bun install --lockfile-only, then audits dependencies through OSV.dev before running the final bun install.
If vulnerabilities at or above --audit-level are found, the install is blocked. Use --force to continue anyway.
Caching
Audit results are cached atvar/cache/security/install-audit.json. The cache key includes the first lockfile found from bun.lock, bun.lockb, or package-lock.json, plus the audit level. Cached audits expire after 24 hours.