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 89e7b2d commit d6944aaCopy full SHA for d6944aa
.github/workflows/tests.yml
@@ -50,6 +50,8 @@ jobs:
50
output-directory: sbom
51
- name: in-toto attestation for cyclonedx SBOM
52
id: in-toto-cyclonedx
53
+ env:
54
+ MODULE_NAME: httptest
55
run: |
56
echo "attestation<<GITHUB_OUTPUT_EOF" >> $GITHUB_OUTPUT
57
(python -m json.tool --sort-keys | tee -a $GITHUB_OUTPUT) <<EOF
@@ -66,8 +68,7 @@ jobs:
66
68
}
67
69
],
70
"predicateType": "https://cyclonedx.org/bom/v1.4",
- "predicate": $(cat "httptest-py${{ matrix.python-version }}.json")
- }
71
+ "predicate": $(cat "${MODULE_NAME}-py${{ matrix.python-version }}.json")
72
73
EOF
74
echo "GITHUB_OUTPUT_EOF" >> $GITHUB_OUTPUT
0 commit comments