Skip to content

Commit

Permalink
feat: add OWASP dependency check
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Oct 26, 2024
1 parent 5be1299 commit ac01f03
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/owasp-dependency-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# SPDX-FileCopyrightText: 2024 LibreCode coop and contributors
# SPDX-License-Identifier: AGPL-3.0-or-later

name: "OWASP Dependency-Check"

on: pull_request

jobs:
dependency-check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Run OWASP Dependency-Check
uses: dependency-check/gh-action@v4
with:
format: 'ALL'
project: 'LibreSign'
scanPath: './'
failOnCVSS: '7.0'

- name: Upload Dependency-Check report
uses: actions/upload-artifact@v4
with:
name: dependency-check-report
path: dependency-check-report.html

0 comments on commit ac01f03

Please sign in to comment.