Skip to content

Commit

Permalink
chore: update checkov workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenMakandra committed Nov 21, 2024
1 parent 7e2b9e7 commit 303d911
Showing 1 changed file with 28 additions and 4 deletions.
32 changes: 28 additions & 4 deletions .github/workflows/checkov.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,35 @@
name: Checkov
name: checkov
on:
push:
branches: [ "main"]
pull_request:
branches: [ "main" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

permissions: read-all

jobs:
checkov:
scan:
permissions:
contents: read
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results

runs-on: ubuntu-latest

steps:
- uses: makandra/github-actions/checkov-terraform@main
- uses: actions/checkout@v3

- name: Checkov GitHub Action
uses: bridgecrewio/checkov-action@v12
with:
output_format: cli,sarif
output_file_path: console,results.sarif

- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2

if: success() || failure()
with:
path: .
sarif_file: results.sarif

0 comments on commit 303d911

Please sign in to comment.