fix(config): only inject llama.cpp serving options on the llama.cpp p… #12198
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: "Security Scan" | |
| # Run workflow each time code is pushed to your repository and on a schedule. | |
| # The scheduled workflow runs every at 00:00 on Sunday UTC time. | |
| on: | |
| push: | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| env: | |
| GO111MODULE: on | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v7 | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| - name: Run Gosec Security Scanner | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| uses: securego/gosec@v2.27.1 | |
| with: | |
| # we let the report trigger content trigger a failure using the GitHub Security features. | |
| # backend/go/supertonic is excluded: it vendors upstream supertone-inc/supertonic | |
| # (helper.go), whose findings (G304 model-file loads, G404 math/rand for flow-matching | |
| # noise, G104 unhandled errors) are inherent to that upstream code, not ours to rewrite. | |
| args: '-no-fail -exclude-dir=backend/go/supertonic -fmt sarif -out results.sarif ./...' | |
| - name: Upload SARIF file | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| uses: github/codeql-action/upload-sarif@v4 | |
| with: | |
| # Path to SARIF file relative to the root of the repository | |
| sarif_file: results.sarif |