Merge pull request #102 from david-a-wheeler/improvements2 #45
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
| on: [push] | |
| jobs: | |
| flawfinder: | |
| name: Flawfinder | |
| runs-on: ubuntu-latest | |
| steps: | |
| # To use this repository's private action, | |
| # you must check out the repository | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Flawfinder action step | |
| uses: ./ # Uses an action in the root directory | |
| with: | |
| arguments: '--sarif ./setup.py' | |
| output: 'flawfinder_results.sarif' | |
| - name: Upload a Build Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| path: flawfinder_results.sarif | |
| - name: Upload analysis results to GitHub Security tab | |
| uses: github/codeql-action/upload-sarif@v1 | |
| with: | |
| sarif_file: ${{github.workspace}}/flawfinder_results.sarif |