Scan latest docker image #507
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: Scan latest docker image | |
on: | |
schedule: | |
- cron: '0 5 * * *' | |
jobs: | |
scan-images: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build an image from Dockerfile | |
run: | | |
docker build -t jembi/openhim-console:${{ github.sha }} . | |
- name: Run trivy vulnerability scanner for the OpenHIM console image | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: jembi/openhim-console:${{ github.sha }} | |
format: 'sarif' | |
output: 'trivy-results.sarif' | |
- name: Upload Trivy scan results to Github Security tab | |
uses: github/codeql-action/upload-sarif@v2 | |
if: always() | |
with: | |
sarif_file: 'trivy-results.sarif' |