From 485587404b46de90710cf681e34967bf4f8faffc Mon Sep 17 00:00:00 2001 From: m-1-k-3 Date: Fri, 30 Jun 2023 10:26:51 +0200 Subject: [PATCH] workflow, readme --- .github/workflows/trivy-container-check.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/trivy-container-check.yml b/.github/workflows/trivy-container-check.yml index 02f8bef69..487e97b98 100644 --- a/.github/workflows/trivy-container-check.yml +++ b/.github/workflows/trivy-container-check.yml @@ -39,7 +39,7 @@ jobs: docker save -o vuln-image.tar embeddedanalyzer/emba - name: Run Trivy vulnerability scanner - uses: aquasecurity/trivy-action@7b7aa264d83dc58691451798b4d117d53d21edfe + uses: aquasecurity/trivy-action@master with: input: /github/workspace/vuln-image.tar timeout: "60m" diff --git a/README.md b/README.md index 9ac8d7fc7..84ddd908b 100644 --- a/README.md +++ b/README.md @@ -60,13 +60,13 @@ sudo ./installer.sh -d ## Quick start with default scan profile: ```console -sudo ./emba -l ~/log -f ~firmware -p ./scan-profiles/default-scan.emba +sudo ./emba -l ~/log -f ~/firmware -p ./scan-profiles/default-scan.emba ``` ## Quick start with system-emulation scan profile: For further details on EMBA's system-emulation engine check the [wiki](https://github.com/e-m-b-a/emba/wiki/System-emulation). ```console -sudo ./emba -l ~/log -f ~/firmware -p ./scan-profiles/default-scan-emulation.emba -m s24 +sudo ./emba -l ~/log -f ~/firmware -p ./scan-profiles/default-scan-emulation.emba ``` ---