Logo
Security Scanning in CI/CD Pipelines (DevSecOps)
BLOG

Security Scanning in CI/CD Pipelines (DevSecOps)

Vulnerability detection in the early stages of the software development process using the shift-left approach.

August 4, 2026
1 min read
DevOps & Automation
Furkan KAPAN
Author
Furkan KAPAN
cat security-scanning-in-cicd-pipelines-devsecops.md

DevSecOps Culture

The principle of considering security at the very beginning of the process rather than the last step is called "shift-left". Integrating tools like SonarQube, Trivy, and Snyk into your CI pipeline is the first step of this process.

Container Scanning with Trivy

stages:
  - test
  - scan

trivy_scan:
  stage: scan
  image: aquasec/trivy:latest
  script:
    - trivy image my-app-image:latest

This simple step allows you to instantly catch critical vulnerabilities in an image pushed to the repo.

Share this article:
Furkan KAPAN

Furkan KAPAN

Senior System Engineer

Senior System Engineer

Comments (0)

No comments yet. Be the first to share your thoughts!

Leave a Comment