Skip to content

Update dependency eslint-plugin-react to v7.37.1 #336

Update dependency eslint-plugin-react to v7.37.1

Update dependency eslint-plugin-react to v7.37.1 #336

Workflow file for this run

name: CVE Scanning
on:
push:
jobs:
node-modules-scan:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Build project with NPM
run: npm install --omit=dev
working-directory: .
- name: Depcheck
uses: dependency-check/Dependency-Check_Action@3102a65fd5f36d0000297576acc56a475b0de98d
id: Depcheck
with:
project: 'calendar'
path: '.'
format: 'HTML'
out: 'reports'
args: >
--suppression allow-list.xml
--nodeAuditSkipDevDependencies
--nodePackageSkipDevDependencies
--failOnCVSS 7
--enableRetired
- name: Upload Test results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: Depcheck report
path: ${{ github.workspace }}/reports