Coana Vulnerability Analysis #84
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coana Vulnerability Analysis | |
on: | |
schedule: | |
- cron: "0 3 * * *" # every day at 3 AM | |
workflow_dispatch: | |
inputs: | |
tags: | |
description: "Manually run vulnerability analysis" | |
# Required by the return-dispatch action | |
distinct_id: | |
jobs: | |
coana-vulnerability-analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run Coana CLI | |
id: coana-cli | |
uses: docker://coana/coana:latest@sha256:74144ed0fc9d7da87dcd45ccd12458cc7c25ad23e47eebd7ceb4860ed396d63e | |
with: | |
args: | | |
coana run . \ | |
--api-key ${{ secrets.COANA_API_KEY }} \ | |
--repo-url https://github.com/${{github.repository}} |