feat: add resource pool CLI support #6
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 | |
| # Free/OSS Semgrep scan (no Semgrep AppSec Platform token) on every pull | |
| # request targeting main. | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| semgrep: | |
| name: Semgrep scan | |
| runs-on: ubuntu-latest | |
| container: | |
| image: semgrep/semgrep:1.169.0 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run Semgrep | |
| run: semgrep scan --config p/golang --config p/secrets --error |