cleanup(sinsp): remove threadinfo dependency on thread_manager/usergroup_manager #3059
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: Semgrep Checks | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - 'release/**' | |
| - 'maintainers/**' | |
| jobs: | |
| insecure-api: | |
| name: check-insecure-api | |
| runs-on: ubuntu-latest | |
| container: | |
| image: docker.io/semgrep/semgrep:1.85.0@sha256:b4c2272e0a2e59ca551ff96d3bbae657bd2b7356e339af557b27a96d9e751544 | |
| steps: | |
| - name: Checkout Libs ⤵️ | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Scan PR for insecure API usage 🕵️ | |
| run: | | |
| semgrep scan \ | |
| --error \ | |
| --metrics=off \ | |
| --baseline-commit ${{ github.event.pull_request.base.sha }} \ | |
| --config=./semgrep/insecure-api | |
| absolute-include-paths: | |
| name: check-absolute-include-paths | |
| runs-on: ubuntu-latest | |
| container: | |
| image: docker.io/semgrep/semgrep:1.85.0@sha256:b4c2272e0a2e59ca551ff96d3bbae657bd2b7356e339af557b27a96d9e751544 | |
| steps: | |
| - name: Checkout Libs ⤵️ | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Scan PR for libs relateive include paths 🕵️ | |
| run: | | |
| semgrep scan \ | |
| --error \ | |
| --metrics=off \ | |
| --baseline-commit ${{ github.event.pull_request.base.sha }} \ | |
| --config=./semgrep/absolute-include-paths.yaml |