Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Add Veracode scanning #1

Add Veracode scanning

Add Veracode scanning #1

Workflow file for this run

name: security-check
on:
push:
branches:
- master
- sicurezza
jobs:
veracode:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Veracode (create zip)
run: zip -r src.zip . -x ".git/*" ".github/*" ".env*"
- name: Veracode Upload and Scan
uses: veracode/veracode-uploadandscan-action@0.2.7
with:
appname: '${{ github.repository }}'
version: '${{ github.head_ref || github.ref_name }} - ${{ github.sha }}'
filepath: './src.zip'
vid: '${{ secrets.AS__VERACODE_API_ID }}'
vkey: '${{ secrets.AS__VERACODE_API_KEY }}'
scanallnonfataltoplevelmodules: true