Skip to content
Open
Show file tree
Hide file tree
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
22 changes: 22 additions & 0 deletions .github/workflows/jpos-dependency-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Run jPOS Dependency Check Analyze"
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Dependency Check Analyze
run: ./gradlew jpos:dependencyCheckAnalyze --info
env:
TERM: dumb
4 changes: 0 additions & 4 deletions .github/workflows/jpos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,3 @@ jobs:
run: ./gradlew jpos:check --info
env:
TERM: dumb
- name: Dependency Check Analyze
run: ./gradlew jpos:dependencyCheckAnalyze --info
env:
TERM: dumb
2 changes: 1 addition & 1 deletion jpos/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
}
dependencies {
classpath 'biz.aQute.bnd:biz.aQute.bnd.gradle:5.2.0'
classpath 'org.owasp:dependency-check-gradle:6.1.1'
classpath 'org.owasp:dependency-check-gradle:6.1.2'
}
}
apply plugin: 'biz.aQute.bnd.builder'
Expand Down