Scan for CVEs #69
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
name: Scan for CVEs | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: {} | |
jobs: | |
getAllCharts: | |
uses: ./.github/workflows/get-all-charts.yaml | |
with: | |
showLibraryCharts: false | |
generateSarifReports: | |
runs-on: ubuntu-latest | |
needs: getAllCharts | |
permissions: | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
chart: ${{ fromJson(needs.getAllCharts.outputs.charts) }} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- run: /home/linuxbrew/.linuxbrew/bin/brew install trivy | |
- run: pip install yq | |
- name: Generate sarif reports | |
run: | | |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" | |
./.github/scripts/generate-sarif-reports.sh ${{ matrix.chart }} | |
- uses: github/codeql-action/upload-sarif@294a9d92911152fe08befb9ec03e240add280cb3 # v3 | |
if: ${{ hashFiles('reports/*.sarif') != '' }} | |
with: | |
sarif_file: reports | |
# TODO: github dependency tree? |