Skip to content
Draft
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
20 changes: 20 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,26 @@ jobs:
cache: maven
- name: Build with Maven
run: mvn -B clean install
dependency-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: OWASP Dependency Check
continue-on-error: true
run: mvn -B verify -Powasp -DskipTests -DnvdApiKey=${{ secrets.NVD_API_KEY }} -DconnectionTimeout=6000 -DreadTimeout=6000
- name: Upload report
if: always()
uses: actions/upload-artifact@v4
with:
name: dependency-check-report
path: target/dependency-check-report.html

## Only on push event, publish on geosolutions maven repo
publish:
runs-on: ubuntu-latest
Expand Down
Loading