Skip to content

chore(submodules): advance affinescript pointer — SELF_KW + 12/12 gol… #328

chore(submodules): advance affinescript pointer — SELF_KW + 12/12 gol…

chore(submodules): advance affinescript pointer — SELF_KW + 12/12 gol… #328

Workflow file for this run

# SPDX-License-Identifier: PMPL-1.0-or-later
name: Semgrep SAST
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
schedule:
- cron: '0 5 * * 1'
workflow_dispatch:
permissions:
contents: read
jobs:
semgrep:
runs-on: ubuntu-latest
permissions:
security-events: write
contents: read
container:
image: semgrep/semgrep
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Run Semgrep
run: semgrep scan --sarif --output=semgrep.sarif --config=auto .
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
- name: Upload SARIF
uses: github/codeql-action/upload-sarif@0d579ffd059c29b07949a3cce3983f0780820c98 # v4.32.6
with:
sarif_file: semgrep.sarif
if: always()