fix: re-enable trivvy docker scan (#4943)
* fix: re-enable trivvy docker scan * wip * fixup * fixup * fixup
This commit is contained in:
parent
f0faa22ee9
commit
3c6f85c282
1
.github/workflows/ci.yaml
vendored
1
.github/workflows/ci.yaml
vendored
@ -464,7 +464,6 @@ jobs:
|
|||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Run Trivy vulnerability scanner in repo mode
|
- name: Run Trivy vulnerability scanner in repo mode
|
||||||
#Commit SHA for v0.0.17
|
|
||||||
uses: aquasecurity/trivy-action@296212627a1e693efa09c00adc3e03b2ba8edf18
|
uses: aquasecurity/trivy-action@296212627a1e693efa09c00adc3e03b2ba8edf18
|
||||||
with:
|
with:
|
||||||
scan-type: "fs"
|
scan-type: "fs"
|
||||||
|
65
.github/workflows/trivy-docker.yaml
vendored
Normal file
65
.github/workflows/trivy-docker.yaml
vendored
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
name: Trivy Nightly Docker Scan
|
||||||
|
|
||||||
|
on:
|
||||||
|
# Run scans if the workflow is modified, in order to test the
|
||||||
|
# workflow itself. This results in some spurious notifications,
|
||||||
|
# but seems okay for testing.
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- .github/workflows/trivy-docker.yaml
|
||||||
|
|
||||||
|
# Run scans against master whenever changes are merged.
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- .github/workflows/trivy-docker.yaml
|
||||||
|
|
||||||
|
schedule:
|
||||||
|
# Run at 10:15 am UTC (3:15am PT/5:15am CT)
|
||||||
|
# Run at 0 minutes 0 hours of every day.
|
||||||
|
- cron: "15 10 * * *"
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
actions: none
|
||||||
|
checks: none
|
||||||
|
contents: read
|
||||||
|
deployments: none
|
||||||
|
issues: none
|
||||||
|
packages: none
|
||||||
|
pull-requests: none
|
||||||
|
repository-projects: none
|
||||||
|
security-events: none
|
||||||
|
statuses: none
|
||||||
|
|
||||||
|
# Cancel in-progress runs for pull requests when developers push
|
||||||
|
# additional changes, and serialize builds in branches.
|
||||||
|
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-concurrency-to-cancel-any-in-progress-job-or-run
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
trivy-scan-image:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Run Trivy vulnerability scanner in image mode
|
||||||
|
uses: aquasecurity/trivy-action@296212627a1e693efa09c00adc3e03b2ba8edf18
|
||||||
|
with:
|
||||||
|
image-ref: "docker.io/codercom/code-server:latest"
|
||||||
|
ignore-unfixed: true
|
||||||
|
format: "sarif"
|
||||||
|
output: "trivy-image-results.sarif"
|
||||||
|
severity: "HIGH,CRITICAL"
|
||||||
|
|
||||||
|
- name: Upload Trivy scan results to GitHub Security tab
|
||||||
|
uses: github/codeql-action/upload-sarif@v1
|
||||||
|
with:
|
||||||
|
sarif_file: "trivy-image-results.sarif"
|
Reference in New Issue
Block a user