-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d9e9adc
commit 59294f4
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,7 +83,7 @@ jobs: | |
- name: "Build" | ||
run: mvn -B -U install -DskipTests | ||
- name: "Create zip" | ||
run: zip -r to-scan.zip engines/aio/target/alfresco-transform-core-aio-*.jar engines/base/target/alfresco-base-t-engine-*.jar model/target/alfresco-transform-model-*.jar | ||
run: zip -r to-scan.zip engines/aio/target/alfresco-transform-core-aio-*.jar engines/base/target/alfresco-base-t-engine-*.jar model/target/alfresco-transform-model-*.jar -x *javadoc.jar *sources.jar | ||
- name: "Run SAST Scan" | ||
uses: veracode/[email protected] | ||
with: | ||
|
@@ -98,6 +98,7 @@ jobs: | |
summary_output_file: results.json | ||
summary_display: true | ||
baseline_file: baseline.json | ||
include: "*alfresco*" | ||
- name: Upload scan result | ||
if: success() || failure() | ||
run: zip readable_output.zip results.json | ||
|