Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add OWASP dependency check #3831

Merged
merged 1 commit into from
Nov 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/owasp-dependency-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# 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/Dependency-Check_Action@main
with:
format: 'ALL'
project: 'LibreSign'
path: './'
args: >
--failOnCVSS 7
--enableRetired
--enableExperimental

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