From cfc9ba5db20e6f7a267a0e194d457344addf21fa Mon Sep 17 00:00:00 2001 From: vishal-deriv <107232432+vishal-deriv@users.noreply.github.com> Date: Fri, 16 Feb 2024 09:30:30 +0530 Subject: [PATCH] Update sast.yaml --- .github/workflows/sast.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sast.yaml b/.github/workflows/sast.yaml index 4522927..af18ab6 100644 --- a/.github/workflows/sast.yaml +++ b/.github/workflows/sast.yaml @@ -12,9 +12,9 @@ jobs: flawfinder-analysis: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set up Python 3.x - uses: actions/setup-python@v2 + uses: actions/setup-python@871daa956ca9ea99f3c3e30acb424b7960676734 with: python-version: '3.x' - name: Install Flawfinder @@ -22,7 +22,7 @@ jobs: - name: Run Flawfinder run: flawfinder --csv ./ > test.csv - name: Upload Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@ef09cdac3e2d3e60d8ccadda691f4f1cec5035cb with: name: my-artifact # NOTE: same artifact name path: test.csv