Container Scan #295
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 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. | |
# This workflow checks out code, builds an image, performs a container image | |
# vulnerability scan with Anchore's Grype tool, and integrates the results with GitHub Advanced Security | |
# code scanning feature. For more information on the Anchore scan action usage | |
# and parameters, see https://github.com/anchore/scan-action. For more | |
# information on Anchore's container image scanning tool Grype, see | |
# https://github.com/anchore/grype | |
name: Container Scan | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "latest" ] | |
paths-ignore: | |
- '.github/**' | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ "latest" ] | |
paths-ignore: | |
- '.github/**' | |
schedule: | |
- cron: '* 2 * * 1' | |
permissions: | |
contents: read | |
jobs: | |
Anchore-Scan: | |
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 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
- name: Pull the Docker image | |
run: docker pull justsky/owa:latest | |
- name: Run the Anchore scan action itself with GitHub Advanced Security code scanning integration enabled | |
uses: anchore/scan-action@62370b53ab026f5d09b9fb43a7b5ec4b73c1a8e0 | |
with: | |
image: "justsky/owa:latest" | |
acs-report-enable: true | |
fail-build: false | |
- name: Upload Anchore Scan Report | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: results.sarif | |
Trivy-Scan: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
name: Build | |
runs-on: "ubuntu-22.04" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Pull the Docker image | |
run: docker pull justsky/owa:latest | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@062f2592684a31eb3aa050cc61e7ca1451cecd3d | |
with: | |
image-ref: 'justsky/owa:latest' | |
format: 'template' | |
template: '@/contrib/sarif.tpl' | |
output: 'trivy-results.sarif' | |
severity: 'CRITICAL,HIGH' | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: 'trivy-results.sarif' |