fix(security): Run bun audit before bun install. (#5496)

This commit is contained in:
Joe Boccanfuso 2025-10-14 23:07:00 -04:00 committed by GitHub
parent 5d57c05217
commit fbd9371884
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -112,9 +112,6 @@ jobs:
- checkout - checkout
- attach_workspace: - attach_workspace:
at: ~/repo at: ~/repo
- run:
name: Install Dependencies
command: bun install --frozen-lockfile
# SECURITY AUDIT # SECURITY AUDIT
- run: - run:
name: 'Security Audit - High Risk Vulnerabilities' name: 'Security Audit - High Risk Vulnerabilities'
@ -143,6 +140,9 @@ jobs:
echo "❌ This build cannot proceed until high-risk vulnerabilities are resolved." echo "❌ This build cannot proceed until high-risk vulnerabilities are resolved."
exit 1 exit 1
fi fi
- run:
name: Install Dependencies
command: bun install --frozen-lockfile
- run: - run:
name: Avoid hosts unknown for github name: Avoid hosts unknown for github
command: | command: |