mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 01:07:04 +02:00
24 lines
460 B
YAML
24 lines
460 B
YAML
name: 'Sec: CI Checks'
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
ref:
|
|
description: GitHub ref to scan.
|
|
required: false
|
|
type: string
|
|
default: ''
|
|
|
|
jobs:
|
|
poutine-scan:
|
|
name: Poutine Security Scan
|
|
uses: ./.github/workflows/sec-poutine-reusable.yml
|
|
with:
|
|
ref: ${{ inputs.ref }}
|
|
secrets: inherit
|
|
|
|
# Future security checks can be added here:
|
|
# - dependency-scan:
|
|
# - secret-detection:
|
|
# - container-scan:
|