feat(query): add OIDC trust policy misconfiguration queries for AWS IAM #12279
Workflow file for this run
This file contains hidden or 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: kics-github-action | |
| on: | |
| pull_request: | |
| branches: [master] | |
| workflow_dispatch: | |
| jobs: | |
| kics-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Run KICS Scan | |
| uses: checkmarx/kics-github-action@63fca4ca72e56edbb5a599ee756e6af1fdb1e785 # v2.1.18 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| path: "./Dockerfile" | |
| ignore_on_exit: results | |
| enable_comments: true | |
| output_path: ./results | |
| output_formats: json,html | |
| type: dockerfile | |
| exclude_queries: 67fd0c4a-68cf-46d7-8c41-bc9fba7e40ae # Ignore Last User Is 'root' | |
| - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: results | |
| path: ./results |