Skip to content

Commit 59f9628

Browse files
committed
Merge branch '3.1.x'
2 parents d7c3acb + fbfa78e commit 59f9628

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/maven.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: setup project jdk-17
3636
id: jdk_17
3737
uses: ./.github/workflows/composites/setup-jdk17
38-
if: env.BASE_BRANCH == 'main' || env.BASE_BRANCH == '3.0.x'
38+
if: env.BASE_BRANCH == 'main' || env.BASE_BRANCH == '3.0.x' || env.BASE_BRANCH == '3.1.x'
3939

4040
- name: cache local maven repository
4141
uses: ./.github/workflows/composites/cache
@@ -115,7 +115,7 @@ jobs:
115115

116116
- name: setup project jdk-17
117117
uses: ./.github/workflows/composites/setup-jdk17
118-
if: env.BASE_BRANCH == 'main' || env.BASE_BRANCH == '3.0.x'
118+
if: env.BASE_BRANCH == 'main' || env.BASE_BRANCH == '3.0.x' || env.BASE_BRANCH == '3.1.x'
119119

120120
- name: pre-test-actions
121121
uses: ./.github/workflows/composites/pre-test-actions
@@ -159,7 +159,7 @@ jobs:
159159

160160
- name: setup project jdk-17
161161
uses: ./.github/workflows/composites/setup-jdk17
162-
if: env.BASE_BRANCH == 'main' || env.BASE_BRANCH == '3.0.x'
162+
if: env.BASE_BRANCH == 'main' || env.BASE_BRANCH == '3.0.x' || env.BASE_BRANCH == '3.1.x'
163163

164164
- name: pre-test-actions
165165
uses: ./.github/workflows/composites/pre-test-actions

spring-cloud-kubernetes-fabric8-config/src/test/java/org/springframework/cloud/kubernetes/fabric8/config/EventBasedConfigurationChangeDetectorTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
*/
4646
class EventBasedConfigurationChangeDetectorTests {
4747

48-
@SuppressWarnings({ "unchecked", "raw" })
48+
@SuppressWarnings({ "unchecked", "rawtypes" })
4949
@Test
5050
void verifyConfigChangesAccountsForBootstrapPropertySources() {
5151
MockEnvironment env = new MockEnvironment();

spring-cloud-kubernetes-integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<properties>
1919
<java.version>17</java.version>
2020
<docker-java.version>3.2.13</docker-java.version>
21-
<testcontainers.version>1.18.0</testcontainers.version>
21+
<testcontainers.version>1.18.3</testcontainers.version>
2222
</properties>
2323

2424
<build>

spring-cloud-kubernetes-test-support/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<properties>
1515
<awaitility.version>4.0.3</awaitility.version>
16-
<testcontainers.version>1.19.0</testcontainers.version>
16+
<testcontainers.version>1.18.3</testcontainers.version>
1717
</properties>
1818
<dependencies>
1919

@@ -61,7 +61,7 @@
6161
<plugin>
6262
<groupId>org.codehaus.mojo</groupId>
6363
<artifactId>exec-maven-plugin</artifactId>
64-
<version>3.1.0</version>
64+
<version>3.1.1</version>
6565
<executions>
6666
<execution>
6767
<goals>

0 commit comments

Comments
 (0)