Coana Vulnerability Analysis #1
This file contains 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: | |
# every day at 12 AM | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
inputs: | |
tags: | |
description: 'Manually run vulnerability analysis' | |
jobs: | |
coana-vulnerability-analysis: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run Coana CLI | |
id: coana-cli | |
run: | | |
npx @coana-tech/cli run . \ | |
--api-key ${{ secrets.COANA_API_KEY }} \ | |
--repo-url https://github.com/${{github.repository}} |