Skip to content

Commit 822186f

Browse files
authored
Merge pull request #287 from OpenLiberty/staging
Merge staging to prod - Dependabot Bump
2 parents d76f94d + c12db55 commit 822186f

File tree

6 files changed

+20
-17
lines changed

6 files changed

+20
-17
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,7 @@ jobs:
5454
run: sudo ../scripts/testApp.sh
5555
- name: Post tests
5656
if: always()
57-
run: sudo docker images
57+
run: |
58+
sudo docker images
59+
echo bitnami/kafka:latest version:
60+
sudo docker inspect --format "{{ index .Config.Labels \"org.opencontainers.image.version\"}}" bitnami/kafka:latest

finish/inventory/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>org.apache.kafka</groupId>
5959
<artifactId>kafka-clients</artifactId>
60-
<version>3.8.1</version>
60+
<version>3.9.0</version>
6161
</dependency>
6262
<!-- end::kafka[] -->
6363
<dependency>
@@ -74,7 +74,7 @@
7474
<dependency>
7575
<groupId>org.testcontainers</groupId>
7676
<artifactId>kafka</artifactId>
77-
<version>1.20.3</version>
77+
<version>1.20.4</version>
7878
<scope>test</scope>
7979
</dependency>
8080
<dependency>
@@ -86,19 +86,19 @@
8686
<dependency>
8787
<groupId>org.testcontainers</groupId>
8888
<artifactId>junit-jupiter</artifactId>
89-
<version>1.20.3</version>
89+
<version>1.20.4</version>
9090
<scope>test</scope>
9191
</dependency>
9292
<dependency>
9393
<groupId>org.jboss.resteasy</groupId>
9494
<artifactId>resteasy-client</artifactId>
95-
<version>6.2.10.Final</version>
95+
<version>6.2.11.Final</version>
9696
<scope>test</scope>
9797
</dependency>
9898
<dependency>
9999
<groupId>org.jboss.resteasy</groupId>
100100
<artifactId>resteasy-json-binding-provider</artifactId>
101-
<version>6.2.10.Final</version>
101+
<version>6.2.11.Final</version>
102102
<scope>test</scope>
103103
</dependency>
104104
</dependencies>

finish/models/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>org.apache.kafka</groupId>
3232
<artifactId>kafka-clients</artifactId>
33-
<version>3.8.1</version>
33+
<version>3.9.0</version>
3434
<scope>provided</scope>
3535
</dependency>
3636
<dependency>

finish/system/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@
5252
<dependency>
5353
<groupId>org.apache.kafka</groupId>
5454
<artifactId>kafka-clients</artifactId>
55-
<version>3.8.1</version>
55+
<version>3.9.0</version>
5656
</dependency>
5757
<!-- end::kafka[] -->
5858
<!-- tag::rxjava[] -->
5959
<dependency>
6060
<groupId>io.reactivex.rxjava3</groupId>
6161
<artifactId>rxjava</artifactId>
62-
<version>3.1.9</version>
62+
<version>3.1.10</version>
6363
</dependency>
6464
<!-- end::rxjava[] -->
6565
<dependency>
@@ -76,7 +76,7 @@
7676
<dependency>
7777
<groupId>org.testcontainers</groupId>
7878
<artifactId>kafka</artifactId>
79-
<version>1.20.3</version>
79+
<version>1.20.4</version>
8080
<scope>test</scope>
8181
</dependency>
8282
<dependency>
@@ -88,7 +88,7 @@
8888
<dependency>
8989
<groupId>org.testcontainers</groupId>
9090
<artifactId>junit-jupiter</artifactId>
91-
<version>1.20.3</version>
91+
<version>1.20.4</version>
9292
<scope>test</scope>
9393
</dependency>
9494
</dependencies>

start/inventory/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>org.apache.kafka</groupId>
5555
<artifactId>kafka-clients</artifactId>
56-
<version>3.8.1</version>
56+
<version>3.9.0</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.slf4j</groupId>
@@ -69,7 +69,7 @@
6969
<dependency>
7070
<groupId>org.testcontainers</groupId>
7171
<artifactId>kafka</artifactId>
72-
<version>1.20.3</version>
72+
<version>1.20.4</version>
7373
<scope>test</scope>
7474
</dependency>
7575
<dependency>
@@ -81,19 +81,19 @@
8181
<dependency>
8282
<groupId>org.testcontainers</groupId>
8383
<artifactId>junit-jupiter</artifactId>
84-
<version>1.20.3</version>
84+
<version>1.20.4</version>
8585
<scope>test</scope>
8686
</dependency>
8787
<dependency>
8888
<groupId>org.jboss.resteasy</groupId>
8989
<artifactId>resteasy-client</artifactId>
90-
<version>6.2.10.Final</version>
90+
<version>6.2.11.Final</version>
9191
<scope>test</scope>
9292
</dependency>
9393
<dependency>
9494
<groupId>org.jboss.resteasy</groupId>
9595
<artifactId>resteasy-json-binding-provider</artifactId>
96-
<version>6.2.10.Final</version>
96+
<version>6.2.11.Final</version>
9797
<scope>test</scope>
9898
</dependency>
9999
</dependencies>

start/models/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>org.apache.kafka</groupId>
3232
<artifactId>kafka-clients</artifactId>
33-
<version>3.8.1</version>
33+
<version>3.9.0</version>
3434
<scope>provided</scope>
3535
</dependency>
3636
<dependency>

0 commit comments

Comments
 (0)