Skip to content
Closed
Show file tree
Hide file tree
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
35 changes: 0 additions & 35 deletions .github/workflows/docker-image.yml

This file was deleted.

60 changes: 0 additions & 60 deletions .github/workflows/fortify.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/insecure-workflow.yml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#
# Runs an OpenText SAST (Fortify) scan using Scan Central, using fortify/github-action@v3.
#

name: OpenText SAST

on:
workflow_dispatch:
pull_request:

jobs:
scan:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

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

- name: Run ScanCentral SAST
uses: fortify/github-action@v3
env:
FCLI_BOOTSTRAP_VERSION: ${{vars.FCLI_VERSION}}
SSC_URL: ${{vars.SSC_URL}}
SC_CLIENT_VERSION: ${{vars.SC_CLIENT_VERSION}}
SSC_TOKEN: ${{secrets.SSC_TOKEN}}
SC_SAST_TOKEN: ${{secrets.SC_SAST_CLIENT_AUTH_TOKEN}}
SSC_APPVERSION: "${{vars.APPLICATION_NAME}}:${{github.ref_name}}"
DO_SETUP: true
SETUP_EXTRA_OPTS: '--issue-template "Prioritized High Risk Issue Template"'
DO_WAIT: true
DO_JOB_SUMMARY: true
3 changes: 3 additions & 0 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
wrapperVersion=3.3.4
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.3/apache-maven-3.9.3-bin.zip
Loading
Loading