-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc36145
commit 414da64
Showing
3 changed files
with
65 additions
and
26 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,12 @@ | ||
--- | ||
title: Container Vulnerability Scanner Failed | ||
labels: work-cycle, security | ||
--- | ||
Trivy Vulnerability Scan failed. | ||
|
||
URL: {{ env.WORKFLOW_URL }} | ||
Output: | ||
|
||
``` | ||
{{ env.SCANNER_OUTPUTS }} | ||
``` |
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 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,53 @@ | ||
name: Run nightly vulnerability check | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds. | ||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
|
||
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. | ||
jobs: | ||
container-vuln-scan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Run Trivy vulnerability scanner | ||
uses: aquasecurity/trivy-action@0.20.0 | ||
id: runscanner | ||
continue-on-error: true | ||
with: | ||
image-ref: 'ghcr.io/pulibrary/dpul-collections:main' | ||
format: 'table' | ||
exit-code: '1' | ||
ignore-unfixed: true | ||
vuln-type: 'os,library' | ||
severity: 'CRITICAL,HIGH' | ||
output: 'vulnerabilities.table' | ||
- name: Set variables | ||
id: scanner | ||
run: | | ||
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) | ||
echo "results<<$EOF" >> $GITHUB_OUTPUT | ||
echo "$(cat vulnerabilities.table)" >> $GITHUB_OUTPUT | ||
echo "$EOF" >> $GITHUB_OUTPUT | ||
- name: Output variable | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
WORKFLOW_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
SCANNER_OUTPUTS: ${{ steps.scanner.outputs.results }} | ||
run: echo "${{ env.SCANNER_OUTPUTS }}" | ||
- name: Create issue | ||
if: job.steps.runscanner.status == failure() | ||
uses: JasonEtco/create-an-issue@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
WORKFLOW_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
SCANNER_OUTPUTS: ${{ steps.scanner.outputs.results }} | ||
with: | ||
filename: .github/failed-vuln-check.md | ||
update_existing: true |