-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Scan the built docker image for CVEs (#1172)
- Loading branch information
1 parent
b870b08
commit 6b6ff07
Showing
2 changed files
with
49 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
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,47 @@ | ||
name: Docker test | ||
|
||
on: | ||
push: | ||
branches: main | ||
|
||
jobs: | ||
scan: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
image: ${{ steps.build.outputs.imageid }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Build docker image | ||
uses: docker/build-push-action@v6 | ||
id: build | ||
with: | ||
secrets: github_token=${{ secrets.GITHUB_TOKEN }} | ||
load: true | ||
cache-from: type=gha | ||
cache-to: type=gha | ||
push: false | ||
|
||
- name: Export docker image as tar | ||
run: docker save -o ${{ github.ref_name }}.tar ${{ steps.build.outputs.imageid }} | ||
|
||
- name: Scan Docker image for CVEs | ||
uses: aquasecurity/[email protected] | ||
with: | ||
input: ${{ github.ref_name }}.tar | ||
format: 'sarif' | ||
output: 'trivy-results.sarif' | ||
limit-severities-for-sarif: true | ||
ignore-unfixed: true | ||
severity: 'CRITICAL,HIGH' | ||
github-pat: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Upload scan results to GitHub Security | ||
uses: github/codeql-action/upload-sarif@v2 | ||
if: always() | ||
with: | ||
sarif_file: 'trivy-results.sarif' |