From c639fc582636a491257a510ac9f844cb7a491378 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Mon, 5 Oct 2020 09:06:43 +0300 Subject: [PATCH] Delete veracode-analysis.yml --- .github/workflows/veracode-analysis.yml | 60 ------------------------- 1 file changed, 60 deletions(-) delete mode 100644 .github/workflows/veracode-analysis.yml diff --git a/.github/workflows/veracode-analysis.yml b/.github/workflows/veracode-analysis.yml deleted file mode 100644 index 395f8316c..000000000 --- a/.github/workflows/veracode-analysis.yml +++ /dev/null @@ -1,60 +0,0 @@ -# This workflow will initiate a Veracode Static Analysis Pipeline scan, return a results.json and convert to SARIF for upload as a code scanning alert - -name: Veracode Static Analysis Pipeline Scan - -# Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a job to build and submit pipeline scan, you will need to customize the build process accordingly and make sure the artifact you build is used as the file input to the pipeline scan file parameter - build-and-pipeline-scan: - # The type of runner that the job will run on - runs-on: ubuntu-latest - steps: - - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it and copies all sources into ZIP file for submitting for analysis. Replace this section with your applications build steps - - uses: actions/checkout@v2 - with: - repository: '' - - - uses: papeloto/action-zip@v1 - with: - files: / - recursive: true - dest: veracode-pipeline-scan-results-to-sarif.zip - - - uses: actions/upload-artifact@v1 - with: - name: my-artifact - path: veracode-pipeline-scan-results-to-sarif.zip - - # download the Veracode Static Analysis Pipeline scan jar - - uses: wei/curl@master - with: - args: -O https://downloads.veracode.com/securityscan/pipeline-scan-LATEST.zip - - run: unzip -o pipeline-scan-LATEST.zip - - - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - run: java -jar pipeline-scan.jar --veracode_api_id "${{secrets.VERACODE_API_ID}}" --veracode_api_key "${{secrets.VERACODE_API_KEY}}" --fail_on_severity="Very High, High" --file veracode-pipeline-scan-results-to-sarif.zip - continue-on-error: true - - uses: actions/upload-artifact@v1 - with: - name: ScanResults - path: results.json - - name: Convert pipeline scan output to SARIF format - id: convert - uses: veracode/veracode-pipeline-scan-results-to-sarif@master - with: - pipeline-results-json: results.json - - uses: github/codeql-action/upload-sarif@v1 - with: - # Path to SARIF file relative to the root of the repository - sarif_file: veracode-results.sarif