Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
version: 2025.7.12
tool_versions: |
java 21
java temurin-21

- uses: SonarSource/ci-github-actions/build-maven@v1
with:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
with:
version: 2025.7.12
tool_versions: |
java ${{ matrix.JAVA_VERSION }}
java temurin-${{ matrix.JAVA_VERSION }}

- name: Getting Vault Secrets
uses: SonarSource/vault-action-wrapper@v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ public void simple_analysis_with_server_and_without_client_certificate_is_failin
.containsAnyOf(
// different exception is thrown depending on the JDK version. See: https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8172163
commonMessage + "Received fatal alert: bad_certificate",
commonMessage + "(certificate_required) Received fatal alert: certificate_required",
commonMessage + "Broken pipe");
}

Expand Down
2 changes: 1 addition & 1 deletion lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>ayza</artifactId>
<version>10.0.2</version>
<version>10.0.3</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

<!-- used for deployment to SonarSource Artifactory -->
<gitRepositoryName>sonar-scanner-java-library</gitRepositoryName>
<mockito.version>5.20.0</mockito.version>
<mockito.version>5.22.0</mockito.version>
<!-- Don't update to slf4j 2 to continue supporting the Scanner for Maven with Maven < 4 -->
<slf4j.version>1.7.36</slf4j.version>
</properties>
Expand Down Expand Up @@ -89,7 +89,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.14.1</version>
<version>6.0.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -111,7 +111,7 @@
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.20.0</version>
<version>1.21.0</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
Loading