Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Prabhu Subramanian committed Jul 5, 2020
1 parent 9000689 commit 42735f4
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/app-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: scan-1.0.0-x86_64.AppImage
asset_path: scan-1.7.0-x86_64.AppImage
asset_name: scan
asset_content_type: application/octet-stream
asset_content_type: application/octet-stream
1 change: 1 addition & 0 deletions appimage-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ script:
# Copy the python application code into the AppDir
- cp appimage-reqs.sh scan lib tools_config AppDir/usr/src -r
- cp tools_config/scan.png AppDir/usr/share/icons/
- cp tools_config/io.shiftleft.scan.appdata.xml AppDir/usr/share/metainfo/
# Install application dependencies
- python3 -m pip install --no-cache-dir --ignore-installed --prefix=/usr --root=AppDir -r ./requirements.txt
- mv AppDir/usr/bin/scan AppDir/usr/bin/depscan
Expand Down
35 changes: 35 additions & 0 deletions tools_config/io.shiftleft.scan.appdata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="console-application">
<id>io.shiftleft.scan</id>

<name>scan</name>
<summary>ShiftLeft Scan is a free open-source security tool for modern DevOps teams</summary>

<metadata_license>FSFAP</metadata_license>
<project_license>GPL-3.0-or-later</project_license>

<description>
<p>
ShiftLeft Scan is a free open-source security tool for modern DevOps teams. With an integrated multi-scanner based design, ShiftLeft Scan can detect various kinds of security flaws in your application and infrastructure code in a single fast scan. The kind of flaws detected are:
</p>
<ul>
<li>Credentials Scanning to detect accidental secret leaks</li>
<li>Static Analysis Security Testing (SAST) for a range of languages and frameworks</li>
<li>Open-source dependencies audit</li>
<li>Licence violation checks</li>
</ul>
</description>

<icon type="stock">utilities-terminal</icon>

<categories>
<category>Development</category>
<category>Building</category>
</categories>
<url type="homepage">https://slscan.io</url>
<project_group>ShiftLeftSecurity</project_group>

<provides>
<binary>scan</binary>
</provides>
</component>

0 comments on commit 42735f4

Please sign in to comment.