Reporter action for github/gitea workflows
Find a file
Kim Daniel Engebretsen cb51f6efde
Update README.md
2025-03-05 17:42:22 +01:00
.faraday-cli.yml default config added 2025-02-20 10:49:07 +01:00
action.yml string issue 2025-02-24 14:34:37 +01:00
README.md Update README.md 2025-03-05 17:42:22 +01:00

report

Reporter action for github/gitea workflows

Usage

Simple scan with reporting to project and FireClover Vulnerability Managment

jobs:
  build:    
    - name: 'Install, build and test application with Docker image'
      run: echo 'See FireClover Docker build action for help'

    - name: Run the FireClover SCA scan action
      uses: fc-actions/scan-sca@v0.1.5
      id: sca
      with:
        source: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}

    - name: Upload vulnerability report
      needs: [steps.sca]
      uses: fc-actions/report@v0.1.11
      with:
        create-repo-issues: 'Critical High'
        instance-url: ${{ vars.FARADAY_URL }}
        password: ${{ secrets.FARADAY_PASSWD }}
        workspace: ${{ env.CUSTOMER_ID || env.STAR_DEPLOYMENT_VANITY_SUBDOMAIN }}
        result-file: ${{ steps.sca.outputs.vulns }}