Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -461,4 +461,32 @@ jobs:
git add .
git commit -m "Update documentation for ${{ needs.build.outputs.release_tag }}"
git push


security_scan:
name: Fortify Security Scan
runs-on: ubuntu-latest
needs: build
steps:
- name: Check-out source code
uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'

- name: Run Fortify Scan
uses: fortify/github-action@v2
with:
fortify-url: https://ams.fortify.com
fortify-tenant: FranklinBank24
scan-types: sca
build-tool: gradle
build-command: build
project-name: ${{ github.repository }}
application-name: ${{ github.repository }}
release-name: ${{ needs.build.outputs.release_version }}
fod-pat: ${{ secrets.FOD_PAT }}
fod-client-id: ${{ secrets.FOD_CLIENT_ID }}
fod-client-secret: ${{ secrets.FOD_CLIENT_SECRET }}
Loading