forked from halestudio/hale
-
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.
Trivy vulnerability check is added the GitHub Actions workflows. ING-4183
- Loading branch information
1 parent
1190433
commit 697adcd
Showing
3 changed files
with
223 additions
and
36 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,122 @@ | ||
name: Vulnerability scan | ||
|
||
on: | ||
push: | ||
branches: | ||
#- '*' # Trigger on all branches for pull requests | ||
- feat/ING-4183 | ||
workflow_dispatch: | ||
inputs: | ||
image-ref: | ||
description: 'Image to scan (if not specified an fs scan is done)' | ||
required: false | ||
default: '' | ||
junit-test-output: | ||
description: 'Location to write JUnit test report to' | ||
required: false | ||
default: '' | ||
create-test-report: | ||
description: 'If a JUnit test report should be created by the action (otherwise it is assumed the report is handled outside of the action)' | ||
required: false | ||
default: 'false' # Note: Action inputs are always of type string | ||
fail-for: | ||
description: 'Issue types to fail for if they are present (added to JUnit report)' | ||
default: 'CRITICAL' | ||
report-retention-days: | ||
description: 'Number of days to retain the HTML report' | ||
default: '30' | ||
report-tag: | ||
description: 'Custom tag for report file, discern multiple reports created in the same run. By default, the job ID is used' | ||
default: '' | ||
check-image-user: | ||
description: 'If the user of the Docker image should be checked to be non-root' | ||
default: 'true' # Note: Action inputs are always of type string | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# | ||
# Check Docker image user | ||
# | ||
- name: 'Check Docker image user' | ||
uses: 'wetransform/gha-docker-nonroot@master' | ||
if: ${{ inputs.check-image-user == 'true' && inputs.image-ref != '' && (inputs.junit-test-output != '' || inputs.create-test-report) }} | ||
with: | ||
image-ref: ${{ inputs.image-ref }} | ||
fail-for-root: false # Rather use JUnit report | ||
create-junit-output: false | ||
junit-test-output: ${{ inputs.junit-test-output != '' && inputs.junit-test-output || 'trivy.xml' }}-user-check.xml | ||
|
||
# | ||
# Scan for security vulnerabilities | ||
# | ||
- name: 'Scan Docker image for critical vulnerabilities' | ||
uses: 'aquasecurity/trivy-action@0.12.0' | ||
if: ${{ inputs.junit-test-output != '' || inputs.create-test-report }} | ||
with: | ||
image-ref: '${{ inputs.image-ref }}' | ||
scan-type: ${{ inputs.image-ref != '' && 'image' || 'fs' }} | ||
format: 'template' | ||
template: '@/contrib/junit.tpl' | ||
output: ${{ inputs.junit-test-output != '' && inputs.junit-test-output || 'trivy.xml' }} | ||
ignore-unfixed: true | ||
vuln-type: 'os,library' | ||
severity: ${{ inputs.fail-for }} | ||
|
||
- name: 'Determine report file name' | ||
shell: bash | ||
run: | | ||
INPUT_STRING="${{ inputs.report-tag != '' && inputs.report-tag || github.job }}-trivy.html" | ||
VALID_FILENAME=$(echo "$INPUT_STRING" | sed 's/[^A-Za-z0-9_.-]/_/g') | ||
echo "REPORT_FILENAME=$VALID_FILENAME" >> $GITHUB_ENV | ||
- name: 'Create vulnerability report as HTML' | ||
uses: 'aquasecurity/trivy-action@0.12.0' | ||
with: | ||
image-ref: '${{ inputs.image-ref }}' | ||
scan-type: ${{ inputs.image-ref != '' && 'image' || 'fs' }} | ||
format: 'template' | ||
template: '@/contrib/html.tpl' | ||
output: ${{ env.REPORT_FILENAME }} | ||
|
||
- name: 'Upload vulnerability report' | ||
uses: 'actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32' | ||
if: always() | ||
with: | ||
name: 'Vulnerability report (HTML)' | ||
path: ${{ env.REPORT_FILENAME }} | ||
retention-days: ${{ inputs.report-retention-days }} | ||
|
||
- name: 'Copy vulnerability summary template' | ||
shell: bash | ||
run: | | ||
cp ${GITHUB_ACTION_PATH}/summary.tpl ./trivy-summary.tpl | ||
- name: 'Create summary on vulnerabilities' | ||
uses: 'aquasecurity/trivy-action@0.12.0' | ||
with: | ||
image-ref: '${{ inputs.image-ref }}' | ||
scan-type: ${{ inputs.image-ref != '' && 'image' || 'fs' }} | ||
format: 'template' | ||
template: '@trivy-summary.tpl' | ||
output: 'trivy.md' | ||
|
||
- name: 'Add to job summary' | ||
shell: bash | ||
run: | | ||
echo "### Vulnerability summary (${{ inputs.image-ref != '' && inputs.image-ref || 'fs' }})" >> $GITHUB_STEP_SUMMARY | ||
cat trivy.md >> $GITHUB_STEP_SUMMARY | ||
# | ||
# Report on unit tests and critical vulnerabilities | ||
# | ||
- name: 'Publish Test Report' | ||
uses: 'mikepenz/action-junit-report@150e2f992e4fad1379da2056d1d1c279f520e058' | ||
if: ${{ always() && inputs.create-test-report == 'true' }} | ||
with: | ||
report_paths: ${{ inputs.junit-test-output != '' && inputs.junit-test-output || 'trivy.xml' }}* | ||
fail_on_failure: true | ||
annotate_only: true | ||
detailed_summary: true |
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 |
---|---|---|
@@ -1,43 +1,45 @@ | ||
name: Check | ||
name: Pull Request Workflow | ||
|
||
# XXX disabled for now because we use Jenkins still, but at the time this was tested it was functional | ||
# on: | ||
# pull_request: | ||
# branches: [ master ] | ||
on: | ||
pull_request: | ||
branches: | ||
#- '*' # Trigger on all branches for pull requests | ||
- feat/ING-4183 | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
# Note: Actually we don't need Maven CLI, only Java 17, but this may have additional benefits due to the Maven cache | ||
- name: Setup Maven | ||
uses: s4u/setup-maven-action@4fdbe2a6a718a03bf4874636eed4311886cab6ba # v1.5.1 | ||
with: | ||
java-version: 17 | ||
java-distribution: temurin | ||
maven-version: 3.8.6 | ||
|
||
- name: Clean | ||
run: ./build.sh clean | ||
working-directory: ./build | ||
|
||
- name: Test (commitStage) | ||
run: ./build.sh commitStage | ||
# run: ./build.sh integrationStage | ||
working-directory: ./build | ||
|
||
# https://github.com/marketplace/actions/junit-report-action | ||
- name: Publish Test Report | ||
uses: mikepenz/action-junit-report@9379f0ccddcab154835d4e2487555ee79614fe95 # v4.2.1 | ||
if: always() # always run even if the previous step fails | ||
with: | ||
report_paths: 'build/target/testReports/*.xml' | ||
|
||
# TODO allure report? | ||
# build/target/allure-results | ||
|
||
# TODO archive logs? | ||
# build/target/testReports/*.out,build/target/testReports/*.err | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Maven | ||
uses: s4u/setup-maven-action@v1.5.1 | ||
with: | ||
java-version: 17 | ||
java-distribution: temurin | ||
maven-version: 3.8.6 | ||
|
||
- name: Clean | ||
run: ./build.sh clean | ||
working-directory: ./build | ||
|
||
- name: Test | ||
run: ./build.sh commitStage | ||
working-directory: ./build | ||
|
||
- name: Publish Test Report | ||
uses: mikepenz/action-junit-report@v4 | ||
if: always() # always run even if the previous step fails | ||
with: | ||
# fail if there are no test results | ||
require_tests: true | ||
|
||
# Workaround for check that is additionally created being associated | ||
# to the wrong workflow/run. Instead no additional check is created. | ||
# See https://github.com/mikepenz/action-junit-report/issues/40 | ||
annotate_only: true | ||
detailed_summary: true | ||
report_paths: 'build/target/testReports/*.xml' | ||
|
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,63 @@ | ||
name: Pull Request Workflow | ||
|
||
on: | ||
push: | ||
branches: | ||
#- '*' # Trigger on all branches for pull requests | ||
- feat/ING-4183 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Maven | ||
uses: s4u/setup-maven-action@v1.5.1 | ||
with: | ||
java-version: 17 | ||
java-distribution: temurin | ||
maven-version: 3.8.6 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | ||
|
||
# Build Docker image | ||
- name: Build Docker image | ||
run: docker build -t halestudio-docker-image . | ||
|
||
# Push Docker image to a registry (optional) | ||
- name: Push Docker image | ||
run: | | ||
echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin | ||
docker push halestudio-docker-image | ||
# Scan Docker image using Trivy | ||
- name: Scan Docker image for vulnerabilities | ||
uses: aquasecurity/trivy-action@0.12.0 | ||
with: | ||
image-ref: 'halestudio-docker-image' | ||
scan-type: 'image' | ||
format: 'template' | ||
template: '/junit.tpl' | ||
output: 'trivy-scan-results.xml' | ||
ignore-unfixed: true | ||
vuln-type: 'os,library' | ||
severity: 'CRITICAL' | ||
|
||
# Upload Trivy scan results to GitHub Security tab | ||
#- name: Upload Trivy scan results to GitHub Security tab | ||
# uses: github/codeql-action/upload-sarif@v2 | ||
# with: | ||
# sarif_file: 'trivy-scan-results.sarif' | ||
|
||
- name: Upload Trivy scan results | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: trivy-results | ||
path: trivy-results.json |