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 60
60
<dependency >
61
61
<groupId >org.apache.santuario</groupId >
62
62
<artifactId >xmlsec</artifactId >
63
- <version >2.2.0 </version >
63
+ <version >2.2.2 </version >
64
64
</dependency >
65
65
<dependency >
66
66
<groupId >commons-codec</groupId >
72
72
<dependency >
73
73
<groupId >com.azure</groupId >
74
74
<artifactId >azure-security-keyvault-keys</artifactId >
75
- <version >4.2.1 </version >
75
+ <version >4.2.8 </version >
76
76
<optional >true</optional >
77
77
</dependency >
78
78
<dependency >
79
79
<groupId >com.azure</groupId >
80
80
<artifactId >azure-identity</artifactId >
81
- <version >1.0.9 </version >
81
+ <version >1.3.0 </version >
82
82
<optional >true</optional >
83
83
</dependency >
84
84
</dependencies >
Original file line number Diff line number Diff line change 81
81
<dependency >
82
82
<groupId >org.apache.santuario</groupId >
83
83
<artifactId >xmlsec</artifactId >
84
- <version >2.2.0 </version >
84
+ <version >2.2.2 </version >
85
85
</dependency >
86
86
<dependency >
87
87
<groupId >commons-codec</groupId >
You can’t perform that action at this time.
0 commit comments