Xygeni Scan #72
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: Xygeni Scan | |
on: | |
workflow_dispatch: # Allows manual triggering | |
# no push triggers | |
# no pull request triggers | |
schedule: | |
- cron: '36 14 * * *' | |
jobs: | |
xygeni-scan: | |
name: Xygeni Scan | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for better relevancy of analysis | |
- name: Xygeni-Scanner | |
uses: xygeni/[email protected] | |
id: Xygeni-Scanner | |
with: | |
xygeni_url: https://apidemo.xygeni.io/deps-doctor-service | |
token: ${{ secrets.XYGENI_TOKEN }} | |
gh_token: ${{ secrets.PAT_FOR_XYGENI_SCAN }} |