Skip to content

Add explanation and copy action for the Pod name in the Pipeline run graph execution node drawer #5789

Add explanation and copy action for the Pod name in the Pipeline run graph execution node drawer

Add explanation and copy action for the Pod name in the Pipeline run graph execution node drawer #5789

Workflow file for this run

name: Value Scan
on:
pull_request:
jobs:
scan:
name: Scan Files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner for filesystem
uses: aquasecurity/[email protected]
with:
scan-type: 'fs'
scan-ref: '.'
trivy-config: .github/trivy.yaml
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'scan_result.sarif'
- name: Archive scan results to GitHub
uses: actions/upload-artifact@v4
with:
name: trivyResult
path: 'scan_result.sarif'
if-no-files-found: error