Skip to content

Trivy Vulnerability Scan (Repo mode) Dispatcher (1.0.x) #1

Trivy Vulnerability Scan (Repo mode) Dispatcher (1.0.x)

Trivy Vulnerability Scan (Repo mode) Dispatcher (1.0.x) #1

name: Trivy Vulnerability Scan (Repo mode) Dispatcher (1.0.x)
on:
schedule:
- cron: '0 15 * * */3' # Once every 3 day at 15:00 UTC
workflow_dispatch:
jobs:
dispatch_trivy_workflow:
name: Dispatch scan workflow
if: github.repository == 'spring-projects/spring-pulsar'
strategy:
matrix:
# List of active maintenance branches.
branch: [ 1.0.x ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Dispatch
env:
GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
run: gh workflow run trivy-scan.yml -r ${{ matrix.branch }}