-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ACS-9044 fix for temporary directory
- Loading branch information
1 parent
cef68a2
commit 547f014
Showing
2 changed files
with
5 additions
and
5 deletions.
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 |
---|---|---|
|
@@ -85,8 +85,8 @@ jobs: | |
bash ./scripts/ci/build.sh | ||
- name: "Remove excluded files" | ||
run: | | ||
bash mkdir temp-dir-for-sast | ||
bash ./scripts/ci/remove-sast-exclusions.sh ./distribution/target/alfresco-reduced.war ./temp-dir-for-sast/reduced.war | ||
mkdir temp-dir-for-sast | ||
bash ./scripts/ci/remove-sast-exclusions.sh ./distribution/target/alfresco-reduced.war temp-dir-for-sast/reduced.war | ||
- name: "Run SAST Scan" | ||
uses: veracode/[email protected] | ||
with: | ||
|
@@ -111,7 +111,7 @@ jobs: | |
name: Veracode Pipeline-Scan Results - ACS (Human Readable) | ||
path: readable_output.zip | ||
- name: "Remove temporary directory" | ||
run: bash rm -rfv temp-dir-for-sast | ||
run: rm -rfv temp-dir-for-sast | ||
- name: "Clean Maven cache" | ||
run: bash ./scripts/ci/cleanup_cache.sh | ||
|
||
|
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