Skip to content

Commit 980d8e3

Browse files
authored
Reordered all the content (#26)
Also * reworked the main README * reworked the docs * added the old scan engine GitHub example
1 parent 82f137e commit 980d8e3

File tree

79 files changed

+209
-33
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+209
-33
lines changed

README.md

Lines changed: 20 additions & 5 deletions

docs/index.md

Lines changed: 139 additions & 28 deletions
File renamed without changes.

github/old-scan-engine/README.md

Lines changed: 17 additions & 0 deletions
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
ame: Sysdig - Build, scan and push Docker Image
2+
3+
on: [push, repository_dispatch]
4+
5+
jobs:
6+
7+
build:
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v1
13+
14+
- name: Build the Docker image
15+
run: docker build . --file Dockerfile --tag sysdiglabs/dummy-vuln-app:latest
16+
17+
- name: Sysdig Secure Inline Scan
18+
id: scan
19+
uses: sysdiglabs/scan-action@v3
20+
with:
21+
# Tag of the image to analyse
22+
image-tag: "sysdiglabs/dummy-vuln-app:latest"
23+
# API token for Sysdig Scanning auth
24+
sysdig-secure-token: ${{ secrets.SYSDIG_SECURE_TOKEN }}
25+
dockerfile-path: ./Dockerfile
26+
input-type: docker-daemon
27+
run-as-user: root
28+
ignore-failed-scan: true
29+
30+
- uses: github/codeql-action/upload-sarif@v1
31+
if: always()
32+
with:
33+
sarif_file: ${{ steps.scan.outputs.sarifReport }}

0 commit comments

Comments
 (0)