Update linter.yml #3
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: Kubescape scanning for misconfigurations | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
kubescape: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: kubescape/github-action@main | |
continue-on-error: true | |
with: | |
format: sarif | |
outputFile: results | |
# # Optional: Scan a specific path. Default will scan the whole repository | |
# files: "examples/*.yaml" | |
- name: Upload Kubescape scan results to Github Code Scanning | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: results.sarif |