Revert "attempt to fix paths"

This reverts commit 6d60a8663e.
This commit is contained in:
2026-03-25 20:14:11 +01:00
parent 6d60a8663e
commit c478a4306a

4
Jenkinsfile vendored
View File

@@ -33,7 +33,7 @@ pipeline {
stage('SAST - Semgrep') {
steps {
sh """
docker run --rm -v "$(pwd):/src" \
docker run --rm -v "\$(pwd):/src" \
returntocorp/semgrep \
semgrep scan --config=auto \
--sarif --output /src/semgrep.sarif \
@@ -48,7 +48,7 @@ pipeline {
curl -X POST "${DD_URL}/api/v2/import-scan/" \
-H "Authorization: Token ${DD_API_KEY}" \
-F "scan_type=SARIF" \
-F "file=@$(pwd)/semgrep.sarif" \
-F "file=@\$(pwd)/semgrep.sarif" \
-F "product_name=ReSendit" \
-F "engagement_name=Jenkins-CI" \
-F "auto_create_context=true" \