fix: Improve parsing of boolean action parameters #750
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
################################################################################################################################################ | |
# 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: | |
push: | |
branches: [ develop ] | |
pull_request: | |
schedule: | |
- cron: '16 0 * * 5' | |
jobs: | |
FoD-SAST-Scan: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Check Out Source Code | |
uses: actions/checkout@v4 | |
with: | |
ref: develop | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Run FoD SAST scan | |
uses: fortify/github-action@v1 | |
with: | |
sast-scan: true | |
env: | |
FOD_URL: https://ams.fortify.com/ | |
FOD_TENANT: ${{secrets.OSS_FOD_TENANT}} | |
FOD_USER: ${{secrets.OSS_FOD_USER}} | |
FOD_PASSWORD: ${{secrets.OSS_FOD_PAT}} | |
FOD_LOGIN_EXTRA_OPTS: --socket-timeout=600s | |
FOD_SAST_SCAN_EXTRA_OPTS: --notes "These are notes from the GitHub Action" | |
DO_SETUP: true | |
# DO_POLICY_CHECK: true | |
DO_JOB_SUMMARY: true | |
# DO_PR_COMMENT: true | |
DO_EXPORT: true | |
SETUP_EXTRA_OPTS: --sdlc-status Development --scan-types sast | |
PACKAGE_EXTRA_OPTS: -oss |