-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from ScilifelabDataCentre/trivy
Add Trivy workflow
- Loading branch information
Showing
2 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Trivy: Scan of current branch | ||
# Trivy is a comprehensive and versatile security scanner. | ||
# Trivy has scanners that look for security issues, and targets where it can find those issues. | ||
# https://github.com/aquasecurity/trivy | ||
# | ||
# This runs on every push for every branch | ||
# ---------------------------------------- | ||
|
||
name: Trivy - branch scan | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
scan: | ||
permissions: | ||
contents: read | ||
security-events: write | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Run Trivy vulnerability scanner | ||
uses: aquasecurity/[email protected] | ||
with: | ||
scan-type: "fs" | ||
ignore-unfixed: true | ||
format: 'sarif' | ||
output: 'trivy-results.sarif' | ||
severity: 'CRITICAL,HIGH' | ||
|
||
- name: Upload Trivy scan results to GitHub Security tab | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: 'trivy-results.sarif' | ||
category: trivy-branch |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Trivy: Scan of current branch | ||
# Trivy is a comprehensive and versatile security scanner. | ||
# Trivy has scanners that look for security issues, and targets where it can find those issues. | ||
# https://github.com/aquasecurity/trivy | ||
# | ||
# This runs on scheduled time (08:30 and 12:30)for the develop image | ||
# ------------------------------------------------------------------ | ||
|
||
name: Trivy - scheduled scan | ||
|
||
on: | ||
workflow_dispatch: | ||
branches: | ||
- master | ||
schedule: | ||
- cron: '30 8,12 * * *' | ||
|
||
jobs: | ||
scan: | ||
permissions: | ||
contents: read | ||
security-events: write | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Ensure lowercase name | ||
run: echo REPOSITORY_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV | ||
|
||
- name: Run Trivy vulnerability scanner | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: 'ghcr.io/${{ env.REPOSITORY_OWNER }}/dsw-appendix:latest' | ||
format: 'sarif' | ||
output: 'trivy-results.sarif' | ||
severity: 'CRITICAL,HIGH' | ||
|
||
- name: Upload Trivy scan results to GitHub Security tab | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: 'trivy-results.sarif' | ||
category: trivy-cron |