Fortify AST Scan #61
Workflow file for this run
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
################################################################################################################################################ | |
# Fortify lets you build secure software fast with an appsec platform that automates testing throughout the DevSecOps pipeline. Fortify static,# | |
# dynamic, interactive, and runtime security testing is available on premises or as a service. To learn more about Fortify, start a free trial # | |
# or contact our sales team, visit microfocus.com/appsecurity. # | |
# # | |
# Use this workflow template as a basis for integrating Fortify on Demand Static Application Security Testing(SAST) into your GitHub workflows.# | |
# This template demonstrates the steps to prepare the code+dependencies, initiate a scan, download results once complete and import into # | |
# GitHub Security Code Scanning Alerts. Existing customers should review inputs and environment variables below to configure scanning against # | |
# an existing application in your Fortify on Demand tenant. Additional information is available in the comments throughout the workflow, the # | |
# documentation for the Fortify actions used, and the Fortify on Demand / ScanCentral Client product documentation. If you need additional # | |
# assistance with configuration, feel free to create a help ticket in the Fortify on Demand portal. # | |
################################################################################################################################################ | |
name: Fortify on Demand Scan | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ "main" ] | |
push: | |
branches: [ "main" ] | |
jobs: | |
FoD-SAST-Scan: | |
# Use the appropriate runner for building your source code. | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
# Check out source code | |
- name: Check Out Source Code | |
uses: actions/checkout@v3 | |
# Java is required to run the various Fortify utilities. When scanning a Java application, please use the appropriate Java version for building your application. | |
#- name: Setup Java | |
# uses: actions/setup-java@v3 | |
# with: | |
# java-version: 11 | |
# distribution: 'temurin' | |
# Perform Fortify on Demand SAST + SCA scan and import SAST results into GitHub code scanning alerts | |
- name: Run FoD SAST Scan | |
uses: fortify/github-action@v1 | |
with: | |
sast-scan: true | |
env: | |
FOD_URL: https://ams.fortify.com | |
FOD_TENANT: ${{secrets.FOD_TENANT}} | |
FOD_USER: ${{secrets.FOD_USER}} | |
FOD_PASSWORD: ${{secrets.FOD_PAT}} | |
# EXTRA_FOD_LOGIN_OPTS: --socket-timeout=60s | |
FOD_RELEASE: ${{ secrets.FOD_RELEASE_ID }} | |
EXTRA_PACKAGE_OPTS: -oss | |
# DO_WAIT: true | |
DO_EXPORT: true |