Vulnerability Scan #227
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
# This workflow will scan the created docker images at scheduled time and create issue if vulnerability is found | |
name: Vulnerability Scan | |
on: | |
schedule: | |
- cron: '30 5 * * 0' | |
jobs: | |
scan: | |
name: Daily Vulnerability Scan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pull docker images | |
run: | | |
docker pull digite/kairon-api | |
docker pull digite/kairon-ui | |
docker pull digite/kairon-action-server | |
docker pull digite/kairon-history-server | |
docker pull digite/kairon-script-runner | |
docker pull digite/kairon-chat | |
docker pull digite/kairon-paraphrase | |
docker pull digite/kairon-qg | |
- uses: Azure/[email protected] | |
name: Scanning api image | |
with: | |
image-name: digite/kairon-api | |
- uses: Azure/[email protected] | |
name: Scanning ui image | |
with: | |
image-name: digite/kairon-ui | |
- uses: Azure/[email protected] | |
name: Scanning action image | |
with: | |
image-name: digite/kairon-action-server | |
- uses: Azure/[email protected] | |
name: Scanning script runner image | |
with: | |
image-name: digite/kairon-script-runner | |
- uses: Azure/[email protected] | |
name: Scanning history image | |
with: | |
image-name: digite/kairon-history-server | |
- uses: Azure/[email protected] | |
name: Scanning chat image | |
with: | |
image-name: digite/kairon-chat | |
- uses: Azure/[email protected] | |
name: Scanning paraphrase image | |
with: | |
image-name: digite/kairon-paraphrase | |
- uses: Azure/[email protected] | |
name: Scanning question generation image | |
with: | |
image-name: digite/kairon-qg |