Skip to content

Commit

Permalink
Add Checkov IaC security scan
Browse files Browse the repository at this point in the history
Enhance build security by integrating Checkov IaC static code analysis
tool.
  • Loading branch information
sbreker committed May 1, 2024
1 parent db1a339 commit 43d3b68
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/checkov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Checkov

on:
#pull_request:
push:
# branches:
# - main

permissions: read-all

jobs:
checkov:
name: Run Checkov for IaC Security Analysis
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Run Checkov with GitHub Action
uses: bridgecrewio/checkov-action@master
with:
framework: dockerfile
quiet: true

0 comments on commit 43d3b68

Please sign in to comment.