File tree Expand file tree Collapse file tree 3 files changed +30
-4
lines changed Expand file tree Collapse file tree 3 files changed +30
-4
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will build a Java project with Maven
2+ # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+ name : java-saml CI with Maven
5+
6+ on : [push, pull_request]
7+
8+ jobs :
9+ test :
10+
11+ runs-on : ${{ matrix.os }}
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ java : [ '8', '9', '10', '11' ]
16+ os : [ 'ubuntu-latest', 'windows-latest' ]
17+ name : Java ${{ matrix.Java }} (${{ matrix.os }})
18+ steps :
19+ - uses : actions/checkout@v2
20+ - name : Set up Java
21+ uses : actions/setup-java@v2
22+ with :
23+ distribution : ' adopt'
24+ java-version : ${{ matrix.java }}
25+ - name : Maven Test
26+ run : mvn --batch-mode clean verify org.jacoco:jacoco-maven-plugin:report
Original file line number Diff line number Diff line change 6060 <dependency >
6161 <groupId >org.apache.santuario</groupId >
6262 <artifactId >xmlsec</artifactId >
63- <version >2.2.0 </version >
63+ <version >2.2.2 </version >
6464 </dependency >
6565 <dependency >
6666 <groupId >commons-codec</groupId >
7272 <dependency >
7373 <groupId >com.azure</groupId >
7474 <artifactId >azure-security-keyvault-keys</artifactId >
75- <version >4.2.1 </version >
75+ <version >4.2.8 </version >
7676 <optional >true</optional >
7777 </dependency >
7878 <dependency >
7979 <groupId >com.azure</groupId >
8080 <artifactId >azure-identity</artifactId >
81- <version >1.0.9 </version >
81+ <version >1.3.0 </version >
8282 <optional >true</optional >
8383 </dependency >
8484 </dependencies >
Original file line number Diff line number Diff line change 8181 <dependency >
8282 <groupId >org.apache.santuario</groupId >
8383 <artifactId >xmlsec</artifactId >
84- <version >2.2.0 </version >
84+ <version >2.2.2 </version >
8585 </dependency >
8686 <dependency >
8787 <groupId >commons-codec</groupId >
You can’t perform that action at this time.
0 commit comments