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 d7298ab commit 4dd7195Copy full SHA for 4dd7195
.github/workflows/generate-sboms.yml
@@ -19,6 +19,11 @@ jobs:
19
- name: Run pip freeze inside the built Docker container
20
run: docker run --rm local-image pip freeze --all --exclude scancodeio > scancode-inputs/requirements.txt
21
22
+ - name: Collect all .ABOUT files in the scancodeio/ directory
23
+ run: |
24
+ mkdir -p scancode-inputs/about-files # Create the directory if it doesn't exist
25
+ find scancodeio/ -type f -name "*.ABOUT" -exec cp {} scancode-inputs/about-files/ \;
26
+
27
- name: Resolve the dependencies using ScanCode-action
28
uses: nexB/scancode-action@main
29
with:
0 commit comments