Skip to content

correction of the file format #1

correction of the file format

correction of the file format #1

Workflow file for this run

name: Run Semgrep
on:
push:
branches:
- '*'
jobs:
semgrep:
runs-on: ubuntu-latest
container:
image: returntocorp/semgrep
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Semgrep
run: |
semgrep \
--sarif --output semgrep.sarif \
--metrics=off \
--config="p/default"
- name: Save report
uses: actions/upload-artifact@v3
with:
name: semgrep.sarif
path: semgrep.sarif
- name: Scanning alerts
uses: github/codeql-action/upload-sarif@v3.25.7
with:
sarif_file: semgrep.sarif
category: semgrep