Skip to content

Commit 07ef230

Browse files
committed
Merge branch 'main' into 1371_java11_refactor
Signed-off-by: jarebudev <[email protected]>
2 parents e06c33d + a6389e8 commit 07ef230

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/merge.yml

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

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

.github/workflows/pullrequest.yml

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

3232
- name: Initialize CodeQL
33-
uses: github/codeql-action/init@d26c46acea4065b13fc57703621e0a7c8b9e836b
33+
uses: github/codeql-action/init@4c3e5362829f0b0bb62ff5f6c938d7f95574c306
3434
with:
3535
languages: java
3636

@@ -47,7 +47,7 @@ jobs:
4747

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

5858
- name: Perform CodeQL Analysis
59-
uses: github/codeql-action/analyze@d26c46acea4065b13fc57703621e0a7c8b9e836b
59+
uses: github/codeql-action/analyze@4c3e5362829f0b0bb62ff5f6c938d7f95574c306

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

4040
- name: Autobuild
41-
uses: github/codeql-action/autobuild@d26c46acea4065b13fc57703621e0a7c8b9e836b
41+
uses: github/codeql-action/autobuild@4c3e5362829f0b0bb62ff5f6c938d7f95574c306
4242

4343
- name: Perform CodeQL Analysis
44-
uses: github/codeql-action/analyze@d26c46acea4065b13fc57703621e0a7c8b9e836b
44+
uses: github/codeql-action/analyze@4c3e5362829f0b0bb62ff5f6c938d7f95574c306

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<maven.compiler.source>11</maven.compiler.source>
1414
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
15-
<junit.jupiter.version>5.12.1</junit.jupiter.version>
15+
<junit.jupiter.version>5.12.2</junit.jupiter.version>
1616
<io.cucumber.version>7.22.0</io.cucumber.version>
1717
<org.mockito.version>5.17.0</org.mockito.version>
1818
<!-- exclusion expression for e2e tests -->
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>org.junit.platform</groupId>
127127
<artifactId>junit-platform-suite</artifactId>
128-
<version>1.12.1</version>
128+
<version>1.12.2</version>
129129
<scope>test</scope>
130130
</dependency>
131131

@@ -212,7 +212,7 @@
212212
<dependency>
213213
<groupId>org.junit</groupId>
214214
<artifactId>junit-bom</artifactId>
215-
<version>5.12.1</version>
215+
<version>5.12.2</version>
216216
<type>pom</type>
217217
<scope>import</scope>
218218
</dependency>

0 commit comments

Comments
 (0)