Bump prettier from 3.0.2 to 3.1.1 in /ui #1746
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Software Composition Analysis | |
on: | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: '23 22 * * 1' | |
jobs: | |
api: | |
name: API SCA | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v4 | |
- name: Setup Node β | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
- name: Install π§ | |
run: cd api; npm ci | |
- name: Dependency Check π | |
run: | | |
cd api; npm run owasp || true | |
- name: Upload Lint Sarif π | |
if: always() | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: api/dependency-check-reports/dependency-check-report.sarif | |
category: api | |
- name: Publish Result π | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: OWASP Dependency Check API Results | |
path: api/dependency-check-reports | |
ui: | |
name: UI SCA | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v4 | |
- name: Setup Node β | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
- name: Install π§ | |
run: cd ui; npm ci | |
- name: Dependency Check π | |
run: | | |
cd ui; npm run owasp || true | |
- name: Upload Lint Sarif π | |
if: always() | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: ui/dependency-check-reports/dependency-check-report.sarif | |
category: ui | |
- name: Publish Result π | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: OWASP Dependency Check UI Results | |
path: ui/dependency-check-reports |