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 bfb1680 commit b4c8a7eCopy full SHA for b4c8a7e
.github/workflows/sonarqube.yml
@@ -134,8 +134,11 @@ jobs:
134
run: |
135
# Install the correct package
136
poetry run pip install cyclonedx-bom
137
+
138
# Generate SBOM in JSON format from Poetry project
- poetry run cyclonedx-py poetry -o cyclonedx_report.json --output-format JSON .
139
+ # Fixed command with proper syntax and including dev dependencies
140
+ poetry run cyclonedx-py poetry --with dev -o cyclonedx_report.json --of JSON .
141
142
# Add error handling and debugging
143
if [ -f "cyclonedx_report.json" ]; then
144
echo "✅ Successfully generated cyclonedx_report.json"
0 commit comments