From 347f409158c1d4b48d4cd5a014ed09af1512185a Mon Sep 17 00:00:00 2001 From: "pkanoongo@turo.com" Date: Tue, 10 Dec 2024 16:55:49 -0600 Subject: [PATCH] fix(static-analysis): implementing the fix provided by semgrep team --- static-analysis/semgrep/action.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/static-analysis/semgrep/action.yaml b/static-analysis/semgrep/action.yaml index d0d5c98..66a0365 100644 --- a/static-analysis/semgrep/action.yaml +++ b/static-analysis/semgrep/action.yaml @@ -10,10 +10,11 @@ inputs: description: SemGrep API token to be added to repo that allows to pull latest rule config from ruleboard in Semgrep UI runs: using: composite - image: semgrep/semgrep:latest-nonroot steps: - name: Checkout if: ${{inputs.checkout-repo == 'true'}} uses: actions/checkout@v4 - - run: semgrep ci + + - name: Run Semgrep + run: semgrep ci shell: bash