Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Security scan
on:
pull_request:
workflow_call:
inputs:
ENABLE_BANDIT:
description: 'Enable the Bandit scanner - useful for Python only'
default: true
type: boolean
jobs:
build:
name: Check for vulnerabilities
Expand All @@ -12,6 +17,7 @@ jobs:

- name: Security check - Bandit
uses: mdegis/bandit-action@v1.0.1
if: ${{ inputs.ENABLE_BANDIT }}
with:
path: "."
level: high
Expand Down
25 changes: 0 additions & 25 deletions .github/workflows/trivy.yaml

This file was deleted.

Loading