From f22bb455e9770b8c7d5ee00a5b78db00b2a4b011 Mon Sep 17 00:00:00 2001 From: cob0 Date: Tue, 29 Oct 2024 11:55:16 +0100 Subject: [PATCH] feature #17: replace local GitHub action with remote repository action (#19) * feature #17: replace local github action with remote repository action * feature #17: change action branch * feature #17: remove local github action for dep-scan-threshold-analyzer steps --- .../action.yml | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 .github/dep-scan-threshold-analyzer-action/action.yml diff --git a/.github/dep-scan-threshold-analyzer-action/action.yml b/.github/dep-scan-threshold-analyzer-action/action.yml deleted file mode 100644 index 34519e1..0000000 --- a/.github/dep-scan-threshold-analyzer-action/action.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: "dep-scan-threshold-analyzer" -description: "A binary tool that verifies if vulnerability reports generated by dep-scan comply with predefined security thresholds. It outputs OK if the vulnerabilities are within the threshold or FAIL if they exceed the allowed values." -inputs: - report_file: - description: "Specifies the filepath where the report are stored." - required: false - default: "/github/workspace/reports/sbom-universal.vdr.json" - threshold: - description: "Defines the threshold level used to determine when a vulnerability or issue should be considered a failure." - required: false - default: "5.0" - -runs: - using: "docker" - image: "docker://ghcr.io/cob0/dep-scan-threshold-analyzer:1.0.0" - args: - - "dep_scan_threshold_analyzer.py" - - "-f" - - ${{ inputs.report_file }} - - "-t" - - ${{ inputs.threshold }} -branding: - icon: "shield" - color: "green"