Skip to content

Commit e2b5967

Browse files
authored
Merge branch 'main' into fix/improve-vmlens-handling
2 parents b818057 + 0596ada commit e2b5967

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
server-password: ${{ secrets.CENTRAL_PASSWORD }}
3737

3838
- name: Cache local Maven repository
39-
uses: actions/cache@638ed79f9dc94c1de1baef91bcab5edaa19451f4
39+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
4040
with:
4141
path: ~/.m2/repository
4242
key: ${{ runner.os }}-17-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/pullrequest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
cache: maven
3333

3434
- name: Initialize CodeQL
35-
uses: github/codeql-action/init@0337c4c06e7e00d0d6e64396c13b9dc18dd6d8c5
35+
uses: github/codeql-action/init@e4b85ab654a244f420e4d9a9ca6305cf2d3fdc90
3636
with:
3737
languages: java
3838

3939
- name: Cache local Maven repository
40-
uses: actions/cache@638ed79f9dc94c1de1baef91bcab5edaa19451f4
40+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
4141
with:
4242
path: ~/.m2/repository
4343
key: ${{ runner.os }}${{ matrix.build.java }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -58,4 +58,4 @@ jobs:
5858
verbose: true # optional (default = false)
5959

6060
- name: Perform CodeQL Analysis
61-
uses: github/codeql-action/analyze@0337c4c06e7e00d0d6e64396c13b9dc18dd6d8c5
61+
uses: github/codeql-action/analyze@e4b85ab654a244f420e4d9a9ca6305cf2d3fdc90

.github/workflows/static-code-scanning.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333

3434
# Initializes the CodeQL tools for scanning.
3535
- name: Initialize CodeQL
36-
uses: github/codeql-action/init@0337c4c06e7e00d0d6e64396c13b9dc18dd6d8c5
36+
uses: github/codeql-action/init@e4b85ab654a244f420e4d9a9ca6305cf2d3fdc90
3737
with:
3838
languages: java
3939

4040
- name: Autobuild
41-
uses: github/codeql-action/autobuild@0337c4c06e7e00d0d6e64396c13b9dc18dd6d8c5
41+
uses: github/codeql-action/autobuild@e4b85ab654a244f420e4d9a9ca6305cf2d3fdc90
4242

4343
- name: Perform CodeQL Analysis
44-
uses: github/codeql-action/analyze@0337c4c06e7e00d0d6e64396c13b9dc18dd6d8c5
44+
uses: github/codeql-action/analyze@e4b85ab654a244f420e4d9a9ca6305cf2d3fdc90

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<dependency>
8989
<groupId>org.assertj</groupId>
9090
<artifactId>assertj-core</artifactId>
91-
<version>3.27.5</version>
91+
<version>3.27.6</version>
9292
<scope>test</scope>
9393
</dependency>
9494

@@ -234,7 +234,7 @@
234234
<dependency>
235235
<groupId>io.cucumber</groupId>
236236
<artifactId>cucumber-bom</artifactId>
237-
<version>7.28.2</version>
237+
<version>7.29.0</version>
238238
<type>pom</type>
239239
<scope>import</scope>
240240
</dependency>
@@ -520,7 +520,7 @@
520520
<plugin>
521521
<groupId>com.diffplug.spotless</groupId>
522522
<artifactId>spotless-maven-plugin</artifactId>
523-
<version>2.46.1</version>
523+
<version>3.0.0</version>
524524
<configuration>
525525
<!-- optional: limit format enforcement to just the files changed by this feature branch -->
526526
<!-- <ratchetFrom>origin/main</ratchetFrom>-->
@@ -583,7 +583,7 @@
583583
<plugin>
584584
<groupId>org.apache.maven.plugins</groupId>
585585
<artifactId>maven-javadoc-plugin</artifactId>
586-
<version>3.11.3</version>
586+
<version>3.12.0</version>
587587
<configuration>
588588
<failOnWarnings>true</failOnWarnings>
589589
<doclint>all,-missing

0 commit comments

Comments
 (0)