diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml new file mode 100644 index 0000000..92f121b --- /dev/null +++ b/.github/workflows/trivy.yml @@ -0,0 +1,30 @@ +name: Trivy Analysis + +on: + push: + branches: + - main + - develop + pull_request: + types: [opened, synchronize, reopened] +jobs: + build: + name: Build and analyze + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: Set up JDK 21 + uses: actions/setup-java@v3 + with: + java-version: 21 + distribution: 'temurin' + - name: Run Trivy vulnerability scanner + uses: aquasecurity/trivy-action@0.20.0 + with: + format: 'table' + scan-type: 'repo' + exit-code: '1' + vuln-type: 'os,library' + severity: 'CRITICAL,HIGH' \ No newline at end of file