Anchore Container Scan #1083
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: Anchore Container Scan | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ "main" ] | |
schedule: | |
- cron: '00 07 * * *' | |
permissions: | |
contents: read | |
env: | |
DOCKERFILE: Dockerfile | |
jobs: | |
Anchore-Build-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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 | |
- name: Build the Docker image | |
run: docker build . --file ${{ env.DOCKERFILE }} --tag localbuild/testimage:latest | |
- name: Run the Anchore scan action itself with GitHub Advanced Security code scanning integration enabled | |
uses: anchore/scan-action@3343887d815d7b07465f6fdcd395bd66508d486a # v3 | |
with: | |
image: "localbuild/testimage:latest" | |
acs-report-enable: true | |
fail-build: true | |
severity-cutoff: "high" | |
- name: Upload Anchore Scan Report | |
uses: github/codeql-action/upload-sarif@366cd9811409649a3e1276ce7f1a1c9023832b56 # v2 | |
if: always() | |
with: | |
sarif_file: results.sarif |