Skip to content

chore(deps): bump github/codeql-action/analyze from 4.36.3 to 4.37.0 #557

chore(deps): bump github/codeql-action/analyze from 4.36.3 to 4.37.0

chore(deps): bump github/codeql-action/analyze from 4.36.3 to 4.37.0 #557

Workflow file for this run

# SPDX-License-Identifier: MPL-2.0
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
timeout-minutes: 15
permissions:
security-events: write
contents: read
container:
image: semgrep/semgrep
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- 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@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
with:
sarif_file: semgrep.sarif
if: always()