Skip to content

Commit

Permalink
Merge branch 'main' into chore/cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Nov 25, 2024
2 parents 640e6c1 + 75bfd87 commit 42f1293
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
path: (core|spring)/**/checkstyle-result.xml

- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
uses: mikepenz/action-junit-report@v5
continue-on-error: true
if: github.event_name == 'pull_request' && (success() || failure())
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@0.28.0
uses: aquasecurity/trivy-action@0.29.0
with:
format: "sarif"
output: "trivy-results.sarif"
Expand Down
8 changes: 4 additions & 4 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.34</version>
<version>1.18.36</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -76,7 +76,7 @@
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>2.2.25</version>
<version>2.2.26</version>
</dependency>
<dependency>
<groupId>jakarta.validation</groupId>
Expand Down Expand Up @@ -124,7 +124,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
<configuration>
<argLine>@{argLine}</argLine>
<skipTests>${skip.unit.tests}</skipTests>
Expand Down Expand Up @@ -194,7 +194,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.1</version>
<configuration>
<source>${java.version}</source>
<doctitle>Javadoc Documentation for ${project.name} ${project.version}
Expand Down
6 changes: 3 additions & 3 deletions spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
<executions>
<execution>
<id>integration-tests</id>
Expand All @@ -210,7 +210,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
<configuration>
<argLine>@{argLine}</argLine>
<skipTests>${skip.unit.tests}</skipTests>
Expand Down Expand Up @@ -338,7 +338,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.1</version>
<configuration>
<source>${java.version}</source>
<doctitle>Javadoc Documentation for ${project.name} ${project.version}
Expand Down

0 comments on commit 42f1293

Please sign in to comment.