Skip to content

Commit 5fea431

Browse files
authored
Update docker images suggested by dependabot (#619)
* Update mosquitto docker image * Update nats docker image * Update mysql/community-server docker image
1 parent 958b667 commit 5fea431

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
container-registry.oracle.com/mysql/community-server:9.2.0
1+
container-registry.oracle.com/mysql/community-server:9.3.0

tests/src/com.mysql/mysql-connector-j/8.0.31/src/test/java/mysql/MySQLTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ static void beforeAll() throws IOException {
5959
System.out.println("Starting MySQL ...");
6060
process = new ProcessBuilder(
6161
"docker", "run", "--rm", "-p", "3306:3306", "-e", "MYSQL_DATABASE=" + DATABASE, "-e", "MYSQL_USER=" + USERNAME,
62-
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.2.0").redirectOutput(new File("mysql-stdout.txt"))
62+
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.3.0").redirectOutput(new File("mysql-stdout.txt"))
6363
.redirectError(new File("mysql-stderr.txt")).start();
6464

6565
// Wait until connection can be established
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nats:2.10.24
1+
nats:2.11.3

tests/src/io.nats/jnats/2.16.11/src/test/java/io_nats/jnats/JnatsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class JnatsTest {
3030
@BeforeAll
3131
public void init() throws IOException {
3232
System.out.println("Starting NATS ...");
33-
process = new ProcessBuilder("docker", "run", "--rm", "-p", "4222:4222", "nats:2.10.24").inheritIO().start();
33+
process = new ProcessBuilder("docker", "run", "--rm", "-p", "4222:4222", "nats:2.11.3").inheritIO().start();
3434

3535
waitUntil(() -> {
3636
openConnection().close();
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
container-registry.oracle.com/mysql/community-server:9.2.0
1+
container-registry.oracle.com/mysql/community-server:9.3.0

tests/src/mysql/mysql-connector-java/8.0.29/src/test/java/mysql/MySQLTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ static void beforeAll() throws IOException {
5151
System.out.println("Starting MySQL ...");
5252
process = new ProcessBuilder(
5353
"docker", "run", "--rm", "-p", "3306:3306", "-e", "MYSQL_DATABASE=" + DATABASE, "-e", "MYSQL_USER=" + USERNAME,
54-
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.2.0").redirectOutput(new File("mysql-stdout.txt"))
54+
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.3.0").redirectOutput(new File("mysql-stdout.txt"))
5555
.redirectError(new File("mysql-stderr.txt")).start();
5656

5757
// Wait until connection can be established
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
eclipse-mosquitto:2.0.20
1+
eclipse-mosquitto:2.0.21

tests/src/org.eclipse.paho/org.eclipse.paho.client.mqttv3/1.2.5/src/test/java/org_eclipse_paho/org_eclipse_paho_client_mqttv3/Mqttv3Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Mqttv3Test {
4343
@BeforeAll
4444
void beforeAll() throws IOException, MqttException {
4545
System.out.println("Starting MQTT broker ...");
46-
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.20", "mosquitto", "-c", "/mosquitto-no-auth.conf")
46+
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.21", "mosquitto", "-c", "/mosquitto-no-auth.conf")
4747
.inheritIO()
4848
.start();
4949

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
eclipse-mosquitto:2.0.20
1+
eclipse-mosquitto:2.0.21

tests/src/org.eclipse.paho/org.eclipse.paho.mqttv5.client/1.2.5/src/test/java/org_eclipse_paho/org_eclipse_paho_mqttv5_client/Mqttv5ClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Mqttv5ClientTest {
4343
@BeforeAll
4444
void beforeAll() throws IOException, MqttException {
4545
System.out.println("Starting MQTT broker ...");
46-
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.20", "mosquitto", "-c", "/mosquitto-no-auth.conf")
46+
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.21", "mosquitto", "-c", "/mosquitto-no-auth.conf")
4747
.inheritIO()
4848
.start();
4949

0 commit comments

Comments
 (0)