Skip to content

Commit dfebd1c

Browse files
committed
October 2025 security updated and sonar cloud scanner version bump up
1 parent 544b4cd commit dfebd1c

6 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/sonarcloud.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ on:
3535
- main
3636
- 'releases/**'
3737
pull_request:
38-
types: [opened, synchronize, reopened]
38+
types: [ opened, synchronize, reopened ]
3939

4040
permissions:
4141
pull-requests: read # allows SonarCloud to decorate PRs with analysis results
@@ -44,18 +44,18 @@ jobs:
4444
sonarqube:
4545
runs-on: ubuntu-latest
4646
steps:
47-
- uses: actions/checkout@v4
48-
with:
49-
# Disabling shallow clones is recommended for improving the relevancy of reporting
50-
fetch-depth: 0
51-
- name: SonarQube Scan
52-
uses: SonarSource/sonarqube-scan-action@v5.3.1 # Ex: v4.1.0, See the latest version at https://github.com/marketplace/actions/official-sonarqube-scan
53-
env:
54-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
47+
- uses: actions/checkout@v4
5548
with:
56-
# Additional arguments for the sonarcloud scanner
57-
args:
58-
# Unique keys of your project and organization. You can find them in SonarCloud > Information (bottom-left menu)
59-
# mandatory
60-
-Dsonar.projectKey=MobileID-Strong-Authentication_mobileid-client-java
61-
-Dsonar.organization=mobileid-strong-authentication
49+
# Disabling shallow clones is recommended for improving the relevancy of reporting
50+
fetch-depth: 0
51+
- name: SonarQube Scan
52+
uses: SonarSource/sonarqube-scan-action@v6.0.0 # Ex: v4.1.0, See the latest version at https://github.com/marketplace/actions/official-sonarqube-scan
53+
env:
54+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
55+
with:
56+
# Additional arguments for the sonarcloud scanner
57+
args:
58+
# Unique keys of your project and organization. You can find them in SonarCloud > Information (bottom-left menu)
59+
# mandatory
60+
-Dsonar.projectKey=MobileID-Strong-Authentication_mobileid-client-java
61+
-Dsonar.organization=mobileid-strong-authentication

mid-java-client-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.5.7</version>
9+
<version>1.5.8</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-core</artifactId>

mid-java-client-rest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.5.7</version>
9+
<version>1.5.8</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-rest</artifactId>

mid-java-client-soap/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.5.7</version>
9+
<version>1.5.8</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-soap</artifactId>

mid-java-client-usage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.5.7</version>
9+
<version>1.5.8</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-usage</artifactId>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.5.7</version>
9+
<version>1.5.8</version>
1010
<name>Mobile ID Java client</name>
1111
<description>Mobile ID client reference implementation in Java</description>
1212
<url>https://github.com/MobileID-Strong-Authentication/mobileid-client-java</url>
@@ -86,7 +86,7 @@
8686
<dependency>
8787
<groupId>commons-io</groupId>
8888
<artifactId>commons-io</artifactId>
89-
<version>2.11.0</version>
89+
<version>2.16.1</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>commons-codec</groupId>
@@ -113,17 +113,17 @@
113113
<dependency>
114114
<groupId>org.bouncycastle</groupId>
115115
<artifactId>bcprov-jdk18on</artifactId>
116-
<version>1.78</version>
116+
<version>1.80</version>
117117
</dependency>
118118
<dependency>
119119
<groupId>org.bouncycastle</groupId>
120120
<artifactId>bcpkix-jdk18on</artifactId>
121-
<version>1.75</version>
121+
<version>1.80</version>
122122
</dependency>
123123
<dependency>
124124
<groupId>org.bouncycastle</groupId>
125125
<artifactId>bcutil-jdk18on</artifactId>
126-
<version>1.78.1</version>
126+
<version>1.80</version>
127127
</dependency>
128128
<dependency>
129129
<groupId>org.junit.jupiter</groupId>

0 commit comments

Comments
 (0)