Skip to content

Commit

Permalink
fixed quotes issue
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanm3341 committed Apr 18, 2024
1 parent 738bfbb commit 605754a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/cve-scanning-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ name: CVE Scanning for Node.js
on:
workflow_dispatch:
schedule:
- cron: "0 8,18 * * 1-5"
- cron: '0 8,18 * * 1-5'
push:
paths:
- "**/package.json"
- "**/package-lock.json"
- ".github/workflows/node-cve-ignore-list.xml"
- ".github/workflows/cve-scanning-node.yml"
- '**/package.json'
- '**/package-lock.json'
- '.github/workflows/node-cve-ignore-list.xml'
- '.github/workflows/cve-scanning-node.yml'

jobs:
node-modules-scan:
Expand All @@ -18,7 +18,7 @@ jobs:
continue-on-error: false
strategy:
matrix:
module-folder: ["cli", "docs"]
module-folder: ['cli', 'docs']
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -33,10 +33,10 @@ jobs:
uses: dependency-check/Dependency-Check_Action@main
id: Depcheck
with:
project: "${{ matrix.module-folder }}"
path: "${{ matrix.module-folder }}"
format: "HTML"
out: "${{ matrix.module-folder }}-reports"
project: '${{ matrix.module-folder }}'
path: '${{ matrix.module-folder }}'
format: 'HTML'
out: '${{ matrix.module-folder }}-reports'
args: >
--suppression .github/node-cve-ignore-list.xml
--nodeAuditSkipDevDependencies
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/license-scanning-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ name: License Scanning for Node.js

on:
schedule:
- cron: "0 8,18 * * 1-5"
- cron: '0 8,18 * * 1-5'
push:
paths:
- "**/package-json.lock"
- "**/package.json"
- ".github/workflows/license-scanning-node.yml"
- '**/package-json.lock'
- '**/package.json'
- '.github/workflows/license-scanning-node.yml'

jobs:
scan:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20.x"]
module-folder: ["cli", "docs"]
node-version: ['20.x']
module-folder: ['cli', 'docs']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
Expand Down

0 comments on commit 605754a

Please sign in to comment.