Skip to content

Commit

Permalink
Fix indentation for markdown report
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertoPellitteri committed Dec 11, 2024
1 parent 3a11c79 commit 8130bc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analyze/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -299,13 +299,13 @@ runs:
# Containers
if [[ -s /tmp/containers.txt ]]; then
echo "# Containers" >> /tmp/report_output.md
echo "## Containers" >> /tmp/report_output.md
python3 ${{github.action_path}}/src/json_to_md.py /tmp/containers.txt >> /tmp/report_output.md
fi
# Hashes
if [[ -s /tmp/hashes.txt ]]; then
echo "# Executable Hashes" >> /tmp/report_output.md
echo "## Executable Hashes" >> /tmp/report_output.md
if ${{ env.VT_API_KEY != '' }}; then
echo "Querying VirusTotal for hashes"
python3 ${{github.action_path}}/src/integrations/virustotal/vt_script.py /tmp/hashes.txt --mode hashes >> /tmp/hashes_vt.txt
Expand Down

0 comments on commit 8130bc1

Please sign in to comment.