Skip to content

Commit eb32d7d

Browse files
authored
Merge branch 'main' into dependabot/maven/org.pitest-pitest-maven-1.20.3
2 parents da53e6b + ce6a29e commit eb32d7d

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5656
steps:
5757
- name: Checkout repository
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v5
5959

6060
# Initializes the CodeQL tools for scanning.
6161
- name: Initialize CodeQL

.github/workflows/main-build-and-deploy-oss.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# timeout-minutes: 15
1616
# steps:
1717
# - name: Checkout
18-
# uses: actions/checkout@v4
18+
# uses: actions/checkout@v5
1919
# - name: Scan With Black Duck
2020
# uses: ./.github/actions/scan-with-blackduck
2121
# with:
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
token: ${{ secrets.GH_TOKEN }}
3434
- name: Update version

.github/workflows/main-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
java-version: [ 17, 21 ]
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
- name: Build
2323
uses: ./.github/actions/build
@@ -40,7 +40,7 @@ jobs:
4040
# timeout-minutes: 15
4141
# steps:
4242
# - name: Checkout
43-
# uses: actions/checkout@v4
43+
# uses: actions/checkout@v5
4444
# - name: Scan
4545
# uses: ./.github/actions/scan-with-blackduck
4646
# with:
@@ -54,7 +54,7 @@ jobs:
5454
needs: [build] # [build, scan]
5555
steps:
5656
- name: Checkout
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v5
5858

5959
- name: Set up Java ${{ env.JAVA_VERSION }}
6060
uses: actions/setup-java@v4

.github/workflows/pull-request-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Build
2424
uses: ./.github/actions/build

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
<maven.compiler.release>${java.version}</maven.compiler.release>
2929
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3030

31-
<cds.services.version>4.1.1</cds.services.version>
31+
<cds.services.version>4.3.1</cds.services.version>
3232
<cds.install-cdsdk.version>8.7.3</cds.install-cdsdk.version>
33-
<qpid.version>2.7.0</qpid.version> <!-- https://central.sonatype.com/artifact/org.apache.qpid/qpid-jms-client/versions -->
33+
<qpid.version>2.9.0</qpid.version> <!-- https://central.sonatype.com/artifact/org.apache.qpid/qpid-jms-client/versions -->
3434
<com.google.code.findbugs.jsr305.version>3.0.2</com.google.code.findbugs.jsr305.version>
3535
</properties>
3636

@@ -216,7 +216,7 @@
216216
</plugin>
217217
<plugin>
218218
<artifactId>maven-surefire-plugin</artifactId>
219-
<version>3.5.2</version>
219+
<version>3.5.4</version>
220220
</plugin>
221221
<plugin>
222222
<artifactId>maven-pmd-plugin</artifactId>
@@ -244,7 +244,7 @@
244244
<plugin>
245245
<groupId>com.github.spotbugs</groupId>
246246
<artifactId>spotbugs-maven-plugin</artifactId>
247-
<version>4.9.3.2</version>
247+
<version>4.9.6.0</version>
248248
</plugin>
249249
</plugins>
250250
</pluginManagement>

0 commit comments

Comments
 (0)