Skip to content

chore(deps): bump actions/checkout from 4 to 5 #92

chore(deps): bump actions/checkout from 4 to 5

chore(deps): bump actions/checkout from 4 to 5 #92

Workflow file for this run

---
name: Security
on: # yamllint disable-line rule:truthy
pull_request: {}
push:
branches:
- main
workflow_dispatch:
inputs:
security-type:
description: What Security scanning you would like to run?
required: false
default: "all"
type: choice
options: ["all", "sca", "code-scanning"]
jobs:
sast:
name: SAST
permissions:
contents: read
security-events: write
uses: fabasoad/reusable-workflows/.github/workflows/wf-security-sast.yml@main
with:
code-scanning: ${{ (inputs.security-type || 'all') == 'all' || inputs.security-type == 'code-scanning' }}
sca: ${{ (inputs.security-type || 'all') == 'all' || inputs.security-type == 'sca' }}