Skip to content

Release/27.0

Release/27.0 #5886

Workflow file for this run

name: "Check code for Security Vulnerabilities"
on:
push:
branches: [develop, master]
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read
jobs:
check-code-security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check if code contains any Terraform Security Vulnerabilities
run: make terraform-security
- name: Checkov Security and Best Practices - Docker
run: make -s docker-best-practices
- name: Checkov Security and Best Practices - Terraform
run: make -s terraform-best-practices
- name: Checkov Security and Best Practices - Github Actions
run: make -s github-actions-best-practices