We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4efd1d2 commit caaebf0Copy full SHA for caaebf0
.github/workflows/check-sca-integrations.yml
@@ -36,6 +36,15 @@ jobs:
36
37
- name: Load the Trivy report SBOM into ScanCode.io
38
uses: aboutcode-org/scancode-action@main
39
+ id: scancode
40
with:
41
pipelines: "load_sbom"
- inputs-path: "${{ github.workspace }}"
42
+ inputs-path: "${{ github.workspace }}/trivy-report.sbom.json"
43
+
44
+ - name: Use project name
45
+ run: echo "Project is ${{ steps.scancode.outputs.project-name }}"
46
47
+ - name: Test running scanpipe for checking the loaded content
48
+ shell: bash
49
+ run: |
50
+ scanpipe shell shell --command "from scanpipe.models import DiscoveredPackage; print(DiscoveredPackage.objects.count())"
0 commit comments