Skip to content

fix(runtimes): fix missing dependency in torchtune trainer image. #231

fix(runtimes): fix missing dependency in torchtune trainer image.

fix(runtimes): fix missing dependency in torchtune trainer image. #231

Workflow file for this run

name: Trivy Vulnerability Scan
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/[email protected]
with:
scan-type: "fs"
ignore-unfixed: true
format: "sarif"
output: "trivy-results.sarif"
severity: "CRITICAL,HIGH"
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: "trivy-results.sarif"