CVE Scanning #1758
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CVE Scanning | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 8,18 * * 1-5' | |
| push: | |
| paths: | |
| - '**/build.gradle' | |
| - '**/package.json' | |
| - '**/package-lock.json' | |
| - '**/*.csproj' | |
| - '**/Dockerfile' | |
| - '.github/workflows/*-ignore-list.xml' | |
| - '.github/workflows/security.yml' | |
| jobs: | |
| node-modules-scan: | |
| name: ${{ matrix.module-folder }}-node-scan | |
| runs-on: ubuntu-latest | |
| continue-on-error: false | |
| strategy: | |
| matrix: | |
| module-folder: [ | |
| 'reference-data', | |
| 'trade-feed', | |
| 'web-front-end/angular', | |
| 'web-front-end/react'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Build project with NPM | |
| run: npm install --omit=dev | |
| working-directory: ${{ matrix.module-folder }} | |
| - name: Depcheck | |
| uses: dependency-check/Dependency-Check_Action@main | |
| id: Depcheck | |
| with: | |
| project: '${{ matrix.module-folder }}' | |
| path: '${{ matrix.module-folder }}' | |
| format: 'HTML' | |
| out: '${{ matrix.module-folder }}-reports' | |
| args: > | |
| --suppression .github/node-cve-ignore-list.xml | |
| --nodeAuditSkipDevDependencies | |
| --nodePackageSkipDevDependencies | |
| --failOnCVSS 5 | |
| --enableRetired | |
| - run: | | |
| echo `echo UPNAME=${{matrix.module-folder}} | tr '/' '-'` >> $GITHUB_ENV | |
| shell: bash | |
| - name: Upload Test results | |
| if: ${{ always() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Depcheck report ${{ env.UPNAME }} | |
| path: ${{ github.workspace }}/${{ matrix.module-folder }}-reports | |
| dotnet-modules-scan: | |
| name: ${{ matrix.module-folder }}-dotnet-scan | |
| runs-on: ubuntu-latest | |
| continue-on-error: false | |
| strategy: | |
| matrix: | |
| module-folder: ['people-service'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Build project with dotnet | |
| run: dotnet build --configuration Release | |
| working-directory: ${{ matrix.module-folder }} | |
| - name: List vulnerable libraries | |
| run: dotnet list package --vulnerable --include-transitive | |
| working-directory: ${{ matrix.module-folder }} | |
| - name: Depcheck | |
| uses: dependency-check/Dependency-Check_Action@main | |
| id: Depcheck | |
| with: | |
| project: '${{ matrix.module-folder }}' | |
| path: '${{ matrix.module-folder }}' | |
| format: 'HTML' | |
| out: '${{ matrix.module-folder }}-reports' | |
| args: > | |
| --suppression .github/dotnet-cve-ignore-list.xml | |
| --failOnCVSS 5 | |
| --enableRetired | |
| - name: Upload Test results | |
| if: ${{ always() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Depcheck report ${{ github.job }} ${{ github.job_workflow_sha}} | |
| path: ${{ github.workspace }}/${{ matrix.module-folder }}-reports | |
| gradle-modules-scan: | |
| name: ${{ matrix.module-folder }}-gradle-scan | |
| runs-on: ubuntu-latest | |
| continue-on-error: false | |
| strategy: | |
| matrix: | |
| module-folder: [ | |
| 'account-service', | |
| 'database', | |
| 'position-service', | |
| 'trade-processor', | |
| 'trade-service',] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| - name: Build project with Gradle | |
| run: gradle clean build | |
| working-directory: ${{ matrix.module-folder }} | |
| - name: Depcheck | |
| uses: dependency-check/Dependency-Check_Action@main | |
| id: Depcheck | |
| env: | |
| JAVA_HOME: /opt/jdk | |
| with: | |
| project: '${{ matrix.module-folder }}' | |
| path: '${{ matrix.module-folder }}' | |
| format: 'HTML' | |
| out: '${{ matrix.module-folder }}-reports' | |
| args: > | |
| --suppression .github/gradle-cve-ignore-list.xml | |
| --failOnCVSS 5 | |
| --enableRetired | |
| - name: Upload Test results | |
| if: ${{ always() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Depcheck report ${{ github.job }} ${{ matrix.module-folder }} | |
| path: ${{ github.workspace }}/${{ matrix.module-folder }}-reports | |
| dockerfile-scan: | |
| name: ${{ matrix.module-folder }}-dockerfile-scan | |
| runs-on: ubuntu-latest | |
| continue-on-error: false | |
| strategy: | |
| matrix: | |
| module-folder: [ | |
| 'trade-processor', | |
| 'database', | |
| 'account-service', | |
| 'trade-feed', | |
| 'position-service', | |
| 'trade-service', | |
| 'web-front-end/angular', | |
| 'people-service', | |
| 'reference-data'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v2 | |
| - name: Configure Docker Daemon | |
| run: | | |
| echo '{"experimental": true}' | sudo tee /etc/docker/daemon.json | |
| sudo systemctl restart docker | |
| - name: Build | |
| run: docker build -f Dockerfile -t user/app:latest . | |
| working-directory: ${{ matrix.module-folder }} | |
| - name: Scan for vulnerabilities | |
| uses: crazy-max/ghaction-container-scan@v3 | |
| with: | |
| image: user/app:latest | |
| dockerfile: ./Dockerfile | |
| severity: HIGH |