Skip to content

Merge pull request #9 from m-mizutani/enhance/mask-string #26

Merge pull request #9 from m-mizutani/enhance/mask-string

Merge pull request #9 from m-mizutani/enhance/mask-string #26

Workflow file for this run

name: Vulnerability scan
on: [push]
jobs:
scan:
runs-on: ubuntu-latest
steps:
- name: Checkout upstream repo
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@master
with:
scan-type: "fs"
ignore-unfixed: true
format: "template"
template: "@/contrib/sarif.tpl"
output: "trivy-results.sarif"
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: "trivy-results.sarif"