Skip to content

Commit 76445d2

Browse files
authored
Merge branch 'main' into feat/hook-data
2 parents 88afd35 + 5474c73 commit 76445d2

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: mvn --batch-mode --update-snapshots verify
5151

5252
- name: Upload coverage to Codecov
53-
uses: codecov/[email protected].0
53+
uses: codecov/[email protected].1
5454
with:
5555
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
5656
flags: unittests # optional

.github/workflows/pullrequest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
cache: maven
3030

3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@0d33fd9f263def169b43518224e68932ef8cc79a
32+
uses: github/codeql-action/init@aa90e97ad2ed17cde6a43e89f70138299e64f837
3333
with:
3434
languages: java
3535

@@ -46,7 +46,7 @@ jobs:
4646

4747
- if: matrix.build.java == '17'
4848
name: Upload coverage to Codecov
49-
uses: codecov/[email protected].0
49+
uses: codecov/[email protected].1
5050
with:
5151
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
5252
flags: unittests # optional
@@ -55,4 +55,4 @@ jobs:
5555
verbose: true # optional (default = false)
5656

5757
- name: Perform CodeQL Analysis
58-
uses: github/codeql-action/analyze@0d33fd9f263def169b43518224e68932ef8cc79a
58+
uses: github/codeql-action/analyze@aa90e97ad2ed17cde6a43e89f70138299e64f837

.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@0d33fd9f263def169b43518224e68932ef8cc79a
36+
uses: github/codeql-action/init@aa90e97ad2ed17cde6a43e89f70138299e64f837
3737
with:
3838
languages: java
3939

4040
- name: Autobuild
41-
uses: github/codeql-action/autobuild@0d33fd9f263def169b43518224e68932ef8cc79a
41+
uses: github/codeql-action/autobuild@aa90e97ad2ed17cde6a43e89f70138299e64f837
4242

4343
- name: Perform CodeQL Analysis
44-
uses: github/codeql-action/analyze@0d33fd9f263def169b43518224e68932ef8cc79a
44+
uses: github/codeql-action/analyze@aa90e97ad2ed17cde6a43e89f70138299e64f837

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@
5252
<dependency>
5353
<groupId>org.projectlombok</groupId>
5454
<artifactId>lombok</artifactId>
55-
<version>1.18.38</version>
55+
<version>1.18.40</version>
5656
<scope>provided</scope>
5757
</dependency>
5858

5959
<dependency>
6060
<!-- used so that lombok can generate suppressions for spotbugs. It needs to find it on the relevant classpath -->
6161
<groupId>com.github.spotbugs</groupId>
6262
<artifactId>spotbugs</artifactId>
63-
<version>4.9.4</version>
63+
<version>4.9.5</version>
6464
<scope>provided</scope>
6565
</dependency>
6666

@@ -258,7 +258,7 @@
258258
<plugin>
259259
<groupId>org.apache.maven.plugins</groupId>
260260
<artifactId>maven-surefire-plugin</artifactId>
261-
<version>3.5.3</version>
261+
<version>3.5.4</version>
262262
<configuration>
263263
<forkCount>1</forkCount>
264264
<reuseForks>false</reuseForks>
@@ -277,7 +277,7 @@
277277
<plugin>
278278
<groupId>org.apache.maven.plugins</groupId>
279279
<artifactId>maven-failsafe-plugin</artifactId>
280-
<version>3.5.3</version>
280+
<version>3.5.4</version>
281281
<configuration>
282282
<argLine>
283283
${surefireArgLine}
@@ -403,7 +403,7 @@
403403
<plugin>
404404
<groupId>com.github.spotbugs</groupId>
405405
<artifactId>spotbugs-maven-plugin</artifactId>
406-
<version>4.9.4.0</version>
406+
<version>4.9.4.2</version>
407407
<configuration>
408408
<excludeFilterFile>spotbugs-exclusions.xml</excludeFilterFile>
409409
<plugins>
@@ -419,7 +419,7 @@
419419
<dependency>
420420
<groupId>com.github.spotbugs</groupId>
421421
<artifactId>spotbugs</artifactId>
422-
<version>4.9.4</version>
422+
<version>4.9.5</version>
423423
</dependency>
424424
</dependencies>
425425
<executions>
@@ -663,7 +663,7 @@
663663
<plugin>
664664
<groupId>org.apache.maven.plugins</groupId>
665665
<artifactId>maven-surefire-plugin</artifactId>
666-
<version>3.5.3</version>
666+
<version>3.5.4</version>
667667
<configuration>
668668
<argLine>
669669
${surefireArgLine}
@@ -679,7 +679,7 @@
679679
<plugin>
680680
<groupId>org.apache.maven.plugins</groupId>
681681
<artifactId>maven-failsafe-plugin</artifactId>
682-
<version>3.5.3</version>
682+
<version>3.5.4</version>
683683
<configuration>
684684
<argLine>
685685
${surefireArgLine}

0 commit comments

Comments
 (0)