Problem
The trivy Security Scan job on main never reaches a vulnerability scan because docker build dies at:
RUN npm ci --workspace=apps/web --production --legacy-peer-deps
The lockfile integrity check fails because:
| package |
package.json requires |
lockfile pinned |
@ai-sdk/gateway |
^4.0.55 |
4.0.23 |
postcss (apps/web nested) |
^8.5.26 |
8.5.21 |
This has blocked Security Scan on PRs #1609, #1612, and #1621 and on main itself.
Fix
Regenerate package-lock.json with npm install --package-lock-only so the lockfile satisfies the manifests. No application code changes.
Problem
The trivy Security Scan job on main never reaches a vulnerability scan because
docker builddies at:The lockfile integrity check fails because:
@ai-sdk/gateway^4.0.554.0.23postcss(apps/web nested)^8.5.268.5.21This has blocked Security Scan on PRs #1609, #1612, and #1621 and on main itself.
Fix
Regenerate
package-lock.jsonwithnpm install --package-lock-onlyso the lockfile satisfies the manifests. No application code changes.