Skip to content

Commit

Permalink
add trivy.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhadfield committed Mar 16, 2024
1 parent 85ad853 commit 00f6870
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: "CodeQL"

on:
push:
# branches: [ main ]
branches:
- main
- master
- fix_integrations
pull_request:
branches:
- main
- master
- fix_integrations
schedule:
- cron: '25 23 * * 6'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'go' ]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
49 changes: 49 additions & 0 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: "Code Scanning"

on:
push:
pull_request:
schedule:
- cron: '0 0 * * 1'
watch:
types: [started]

jobs:
Trivy-Scan:
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 docker mode
# uses: aquasecurity/trivy-action@master
# with:
# image-ref: 'docker.io/my-organization/my-app:${{ github.sha }}'
# format: 'template'
# template: '@/contrib/sarif.tpl'
# output: 'trivy-results-docker.sarif'
# severity: 'CRITICAL'
#
# - name: Upload Trivy scan results to GitHub Security tab
# uses: github/codeql-action/upload-sarif@v1
# with:
# sarif_file: 'trivy-results-docker.sarif'

- name: Run Trivy vulnerability scanner in fs mode
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
ignore-unfixed: true
format: 'sarif'
output: 'trivy-results.sarif'
severity: 'CRITICAL'

- name: DEBUG Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'

0 comments on commit 00f6870

Please sign in to comment.