Skip to content

Commit 5622b34

Browse files
# Conflicts: # pom.xml
2 parents 168e4c0 + ac511e2 commit 5622b34

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/maven.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v3
19-
- name: Set up JDK 1.8
20-
uses: actions/setup-java@v1
18+
- uses: actions/checkout@v4
19+
- name: Set up JDK 17
20+
uses: actions/setup-java@v4
2121
with:
22-
java-version: 1.8
22+
java-version: '17'
2323
distribution: 'temurin'
2424
cache: maven
2525
- name: Build with Maven
2626
run: mvn -B package --file pom.xml
2727
- name: Run test and coverage report
28-
run: mvn clean test jacoco:report coveralls:report -DrepoToken=${{ secrets.COVERALL_REPO_SECRET }}
28+
run: mvn clean test jacoco:report
29+
- name: Run dependency check
30+
run: mvn org.owasp:dependency-check-maven:check

0 commit comments

Comments
 (0)