Skip to content

Commit c7ad332

Browse files
authored
Merge pull request #345 from onelogin/migrate-to-gha
Support Github Actions. Create maven.yml
2 parents 03aadbc + d006fb8 commit c7ad332

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

.github/workflows/maven.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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

core/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
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>
@@ -72,13 +72,13 @@
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>

toolkit/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
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>

0 commit comments

Comments
 (0)