Skip to content

Bump the github-actions group with 4 updates #690

Bump the github-actions group with 4 updates

Bump the github-actions group with 4 updates #690

Workflow file for this run

name: checkov
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
scan:
permissions:
contents: read
security-events: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Run checkov
uses: bridgecrewio/checkov-action@8915e9071550c2d2dc56a011b9012b74ae42da12 # v12.2982.0
with:
config_file: .checkov.yml
output_format: cli,sarif
output_file_path: console,results.sarif
skip_download: true # Do not download any data from Bridgecrew's servers
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
if: success() || failure()
with:
sarif_file: results.sarif