-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
2 changed files
with
12 additions
and
16 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 |
---|---|---|
|
@@ -87,14 +87,12 @@ runs: | |
FOD_APP_NAME: ${{ inputs.fod_app_name }} | ||
FOD_RELEASE_NAME: ${{ inputs.fod_release_name }} | ||
FOD_PARENT_RELEASE_NAME: ${{ inputs.fod_parent_release_name }} | ||
# Since this is a Javascript project we can simply Zip up source rather than use "scancentral package" command | ||
- name: Package Code + Dependencies | ||
uses: TheDoctor0/[email protected] | ||
with: | ||
directory: ${{ inputs.working_directory }} | ||
type: 'zip' | ||
filename: 'package.zip' | ||
exclusions: '*.git* config logs node_modules' | ||
# Create FoD upload package using ScanCentral "package" action | ||
- name: Package Code | ||
uses: fortify/github-action/package@v1 | ||
env: | ||
EXTRA_PACKAGE_OPTS: -bt none | ||
PACKAGE_FILE: "package" | ||
# Start Fortify on Demand SAST scan and wait until results complete. | ||
- name: Perform FoD SAST scan | ||
id: fod-sast-scan | ||
|
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 |
---|---|---|
|
@@ -87,14 +87,12 @@ runs: | |
# SSC_APP_NAME: ${{ inputs.ssc_app_name }} | ||
# SSC_APPVER_NAME: ${{ inputs.ssc_appver_name }} | ||
# SSC_PARENT_APPVER_NAME: ${{ inputs.ssc_parent_appver_name }} | ||
# Since this is a Javascript project we can simply Zip up source rather than use "scancentral package" command | ||
- name: Package Code + Dependencies | ||
uses: TheDoctor0/[email protected] | ||
with: | ||
directory: ${{ env.BASE_DIR }} | ||
type: 'zip' | ||
filename: 'package.zip' | ||
exclusions: '*.git* config logs node_modules' | ||
# Create FoD upload package using ScanCentral "package" action | ||
- name: Package Code | ||
uses: fortify/github-action/package@v1 | ||
env: | ||
EXTRA_PACKAGE_OPTS: -bt none | ||
PACKAGE_FILE: "package" | ||
# Start ScanCentral SAST scan and wait until results complete. | ||
- name: Perform ScanCentral SAST scan | ||
id: scancentral-sast-scan | ||
|