Skip to content

Update sast.yaml

Update sast.yaml #6

Workflow file for this run

name: Flawfinder Analysis
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
flawfinder-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Flawfinder
run: pip install flawfinder
- name: Run Flawfinder
run: flawfinder ./ > test.txt
- name: Upload Artifact
uses: actions/upload-artifact@v4

Check failure on line 25 in .github/workflows/sast.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/sast.yaml

Invalid workflow file

You have an error in your yaml syntax on line 25
with:
name: my-artifact # NOTE: same artifact name
path: test.txt