Skip to content
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/docker-image-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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-core:${{ github.sha }} .

- name: Run trivy vulnerability scanner for the OpenHIM core image
uses: aquasecurity/trivy-action@master
with:
image-ref: jembi/openhim-core:${{ 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'