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.
Merge pull request #3 from emanuelaepure10/emanuelaepure10-patch-1
feat: add trivy vulnerability check
- Loading branch information
Showing
6 changed files
with
5,771 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: Trivy vulnerability scanner | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
pull_request: | ||
branches: | ||
- '*' | ||
#schedule: | ||
# - cron: '39 17 * * 3' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
permissions: | ||
contents: read # for actions/checkout to fetch code | ||
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | ||
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
#- name: Build an image from Dockerfile | ||
# run: | | ||
# docker build -t docker.io/my-organization/my-app:${{ github.sha }} . | ||
|
||
- name: Run Trivy vulnerability scanner in fs mode | ||
uses: aquasecurity/trivy-action@master | ||
with: | ||
# image-ref: 'docker.io/my-organization/my-app:${{ github.sha }}' | ||
scan-type: 'fs' | ||
scan-ref: '.' | ||
#exit-code: '0' | ||
#ignore-unfixed: true | ||
#format: 'table' | ||
#vuln-type: 'os,library' | ||
severity: 'CRITICAL,HIGH,MEDIUM' | ||
#template: '/sarif.tpl' | ||
output: 'trivy-results.sarif' | ||
#skip-dirs: "ignored-dir" | ||
trivy-config: trivy.yaml | ||
|
||
- name: Upload Trivy scan results to GitHub Security tab | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: 'trivy-results.sarif' | ||
|
||
#- name: DEBUG Upload Trivy scan results to GitHub Security tab | ||
# uses: github/codeql-action/upload-sarif@v3 | ||
# with: | ||
# sarif_file: 'debug-trivy-results.sarif' | ||
|
||
#- name: Create Pull Request | ||
# uses: peter-evans/create-pull-request@v5 | ||
# with: | ||
# commit-message: update vulnerability list | ||
# title: Update vulnerability list | ||
# body: Update the vulnerability list | ||
# branch: update-vulnerabilities |
Oops, something went wrong.