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
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:

- name: Publish surefire test report
if: always()
uses: mikepenz/action-junit-report@v6.2.0
uses: mikepenz/action-junit-report@v6.3.0
with:
check_name: test-report
report_paths: 'target/*-reports/TEST-*.xml'
fail_on_failure: 'true'

- if: always()
name: Publish html test reports to an artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-reports-files
path: |
Expand All @@ -51,7 +51,7 @@ jobs:

- if: always()
name: Publish test reports for sonarqube job
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-reports-for-sonar
path: |
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<junit.version>6.0.2</junit.version>
<junit.version>6.0.3</junit.version>

<surefire.version>3.5.4</surefire.version>
<surefire.version>3.5.5</surefire.version>

<slf4j.version>2.0.17</slf4j.version>

Expand Down Expand Up @@ -91,7 +91,7 @@
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.51.1.0</version>
<version>3.51.2.0</version>
</dependency>
<!-- Logs -->
<dependency>
Expand Down Expand Up @@ -126,7 +126,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.21.0</version>
<version>2.21.1</version>
</dependency>
</dependencies>

Expand Down