Skip to content

v5.1.0 - Add re-usable workflow to check for vulnerabilities

Latest
Compare
Choose a tag to compare
@JeroenKnoops JeroenKnoops released this 21 Dec 21:51
· 88 commits to main since this release
d0045b8

New feature

When using Rekor to store the SBOM, you can use a workflow to get a vulnerability report created by Grype.

Example

name: Check vulnerabilities 

on:
  schedule:
    - cron: '14 15 * * 1'
  workflow_dispatch:

permissions: 
  id-token: write

jobs:
  check:
    name: Check Vulnerabities
    uses: philips-software/docker-ci-scripts/.github/workflows/check-vulnerabilities.yaml@main
    with:
      image: <your-container>

Example can be found here.

What's Changed

New Contributors

Full Changelog: v5.0.0...v5.1.0