Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add Trivy scanner to the pipeline #296

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/verifyimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
targets: ${{ steps.generate.outputs.targets }}
repo: ${{ steps.metadata.outputs.repo }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -25,6 +26,10 @@ jobs:
curl -sSL https://raw.githubusercontent.com/owasp-modsecurity/ModSecurity/v3/master/modsecurity.conf-recommended -o modsecurity.conf-recommended
echo '${{ env.MODSECURITY_RECOMMENDED }}' > sha256sum.txt
sha256sum -c sha256sum.txt
# The environment variable is not accessible in the context of "with" section
- name: Set a repo output
id: metadata
run: echo "repo=${REPO}" >> "$GITHUB_OUTPUT"

build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -60,6 +65,18 @@ jobs:
load: true
push: false

# In case of TOOMANYREQUESTS the cache mechanism should be considered
- name: Scan ${{ matrix.target }}
uses: aquasecurity/[email protected]
with:
image-ref: ${{ needs.prepare.outputs.repo }}:${{ matrix.target }}
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
scanners: 'vuln,secret'

- name: Run ${{ matrix.target }}
run: |
echo "Starting container ${{ matrix.target }}"
Expand Down
Loading