From 792019a46f5b52c5acd037946b5f47cc8cb2b793 Mon Sep 17 00:00:00 2001 From: Max Milton Date: Thu, 18 Jul 2024 14:57:09 +0900 Subject: [PATCH] chore: Don't fail CI when semgrep finds issues It's better that we handle it via Github security UI --- .github/workflows/semgrep-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/semgrep-analysis.yml b/.github/workflows/semgrep-analysis.yml index 913b8d65..33d99d60 100644 --- a/.github/workflows/semgrep-analysis.yml +++ b/.github/workflows/semgrep-analysis.yml @@ -21,7 +21,7 @@ jobs: security-events: write steps: - uses: actions/checkout@v4 - - run: semgrep ci --sarif > semgrep.sarif + - run: semgrep ci --sarif > semgrep.sarif || true env: SEMGREP_RULES: p/default - uses: github/codeql-action/upload-sarif@v3