Skip to content

[Snyk] Security upgrade vite from 6.0.7 to 6.0.9 #650

[Snyk] Security upgrade vite from 6.0.7 to 6.0.9

[Snyk] Security upgrade vite from 6.0.7 to 6.0.9 #650

Workflow file for this run

name: Check code security
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
security:
runs-on: ubuntu-latest
steps:
- name: 1/3 | Checkout repo
uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: 2/3 | Run Snyk Scanner
uses: snyk/actions/node@master
continue-on-error: true
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
command: test
args: --all-projects --detection-depth=4 --dev --show-vulnerable-paths=all --sarif-file-output=snyk.sarif
- name: 3/3 | Upload Snyk result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: snyk.sarif