Skip to content

chore(deps): bump fast-xml-parser from 4.3.4 to 4.4.1 #9

chore(deps): bump fast-xml-parser from 4.3.4 to 4.4.1

chore(deps): bump fast-xml-parser from 4.3.4 to 4.4.1 #9

Workflow file for this run

name: SecretScan
on:
push:
branches:
- develop
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
ignore-unfixed: true
format: 'table'
output: 'trivy-results.sarif'
severity: 'CRITICAL'
- name: scan
env:
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}
run: |
sudo apt-get install wget apt-transport-https gnupg lsb-release
wget -qO - https://aquasecurity.github.io/trivy-repo/deb/public.key | sudo apt-key add -
echo deb https://aquasecurity.github.io/trivy-repo/deb $(lsb_release -sc) main | sudo tee -a /etc/apt/sources.list.d/trivy.list
sudo apt-get update
sudo apt-get install trivy -y
trivy fs .