Skip to content

Commit 01f72fa

Browse files
authored
Upgrade Fortify GitHub Action and checkout version
Updated Fortify workflow to use newer action versions and added additional scan options.
1 parent dbc765e commit 01f72fa

1 file changed

Lines changed: 7 additions & 11 deletions

File tree

.github/workflows/fortify.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
# Check out source code
3434
- name: Check Out Source Code
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636

3737
# Java is required to run the various Fortify utilities. Ensuring proper version is installed on the runner.
3838
- name: Setup Java
@@ -42,19 +42,15 @@ jobs:
4242
distribution: 'temurin'
4343

4444
# Perform Fortify on Demand SAST + SCA scan and import SAST results into GitHub code scanning alerts
45-
- name: Run FoD SAST Scan
46-
uses: fortify/github-action@v2
47-
with:
48-
sast-scan: true
49-
debricked-sca-scan: true
45+
- name: Run FoD SAST+SCA Scan
46+
uses: fortify/github-action@v3
5047
env:
5148
FOD_URL: https://ams.fortify.com
5249
FOD_TENANT: ${{secrets.FOD_TENANT}}
5350
FOD_USER: ${{secrets.FOD_USER}}
5451
FOD_PASSWORD: ${{secrets.FOD_PAT}}
55-
DO_EXPORT: true
56-
DO_SETUP: true
57-
SETUP_EXTRA_OPTS: --copy-from "${{ github.repository }}:${{ github.event.repository.default_branch }}"
58-
DO_JOB_SUMMARY: true
59-
DO_PR_COMMENT: true
52+
DO_SCA_SCAN: true
53+
DO_AVIATOR_AUDIT: true
54+
COPY_FROM_RELEASE: "${{ github.repository }}:${{ github.event.repository.default_branch }}"
55+
#DO_PR_COMMENT: true
6056
#DO_POLICY_CHECK: true

0 commit comments

Comments
 (0)