Skip to content

Commit 17ac0c0

Browse files
committed
Update Java Matrix and test containers versions
1 parent 961e37b commit 17ac0c0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
matrix:
1010
cache: [maven]
1111
distribution: [temurin]
12-
java: [17, 21, 23, 24-ea, 25-ea]
12+
java: [17, 21, 23, 24-ea]
1313
os: [ubuntu-latest]
1414
fail-fast: false
1515
max-parallel: 4

src/test/java/config/TestContainersConfiguration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
* Utility interface to hold Docker image tags for the test containers we use
2222
*/
2323
public interface TestContainersConfiguration {
24-
DockerImageName POSTGRES_LATEST = DockerImageName.parse("postgres:17.0");
25-
DockerImageName MARIADB_LATEST = DockerImageName.parse("mariadb:11.5.2");
24+
DockerImageName POSTGRES_LATEST = DockerImageName.parse("postgres:17.2");
25+
DockerImageName MARIADB_LATEST = DockerImageName.parse("mariadb:11.6.2");
2626
}

0 commit comments

Comments
 (0)