Skip to content

Commit 3db2257

Browse files
authored
Merge pull request #57 from fortify/fortify-action-update
Fortify action update to v3
2 parents 88c7344 + fd30e61 commit 3db2257

1 file changed

Lines changed: 6 additions & 12 deletions

File tree

.github/workflows/fortify.yml

Lines changed: 6 additions & 12 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,13 @@ 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
60-
#DO_POLICY_CHECK: true
52+
DO_SCA_SCAN: true
53+
DO_AVIATOR_AUDIT: true
54+
COPY_FROM_RELEASE: "${{ github.repository }}:${{ github.event.repository.default_branch }}"

0 commit comments

Comments
 (0)