From the course: Windsurf for Privacy-Conscious Development

Unlock this course with a free trial

Join today to access over 25,500 courses taught by industry experts.

Security scans

Security scans

- [Instructor] Manual security-scanning creates bottlenecks and inconsistent coverage in development workflows. Automated security integration ensures every code chains and container build undergoes security analysis without slowing down velocity for development. Today, we're going to create a GitHub Actions workflow that runs security-scans automatically and establishes branch protection rules to enforce security standards before code reaches production. Here in our repository, we have a few different files. We have a js file for a server and our json package and our Dockerfile, so what we're going to do is we're going to create a new file, and we're going to want to have this in our gitHub folder, and we're going to have this as part of a workflows folder and security-scans, and we're going to do security-scans.yml. Now, what we're going to want to do is configure our workflow, so to create this workflow, we're going to,…

Contents