Bump next from 16.2.6 to 16.2.11 in /docs-site #92
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 Scan | |
| on: | |
| - workflow_call | |
| - push | |
| - pull_request | |
| jobs: | |
| semgrep: | |
| name: Semgrep Analysis | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set Up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Install Semgrep, rugo, and upload client | |
| run: python -m pip install --no-cache-dir semgrep rugo opteryx-upload | |
| - name: Run Semgrep | |
| run: semgrep scan --config=auto --json --output=semgrep-report.json | |
| - name: Upload results to Opteryx | |
| env: | |
| UPLOAD_CLIENT: ${{ secrets.UPLOAD_CLIENT }} | |
| UPLOAD_TOKEN: ${{ secrets.UPLOAD_TOKEN }} | |
| run: python scripts/upload_semgrep_results.py semgrep-report.json |