Scan the gatecheck codebase #11
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: Scan gatecheck | |
| run-name: "Scan the gatecheck codebase" | |
| permissions: | |
| contents: read | |
| checks: write | |
| packages: write | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ '*' ] | |
| tags: [ '*' ] | |
| jobs: | |
| code_scan: | |
| runs-on: ubuntu-latest | |
| name: Portage Code Scan | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run Portage CD Scans | |
| uses: easy-up/portage-cd-actions/image-build-scan-publish/docker@main | |
| with: | |
| image_build_enabled: 'false' | |
| image_scan_enabled: 'false' |