Add link from the NN Re-assigned install to the node that got its number #1311
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checkov | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
checkov-job: | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
statuses: none | |
runs-on: ubuntu-latest | |
name: checkov-action | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@master | |
- name: Run Checkov action | |
id: checkov | |
uses: bridgecrewio/checkov-action@0549dc60bddd4c55cb85c6c3a07072e3cf2ca48e | |
with: | |
skip_check: CKV_DOCKER_2,CKV_DOCKER_3,CKV_SECRET_6 | |
quiet: true | |
output_format: cli,sarif | |
output_file_path: console,results.sarif | |
download_external_modules: true | |
skip_path: infra/helm/meshdb/charts | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@d39d31e687223d841ef683f52467bd88e9b21c14 # v3 | |
if: success() || failure() | |
with: | |
sarif_file: results.sarif |