Skip to content

Commit

Permalink
Update Java Matrix and test containers versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffgbutler committed Dec 28, 2024
1 parent 961e37b commit 17ac0c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
matrix:
cache: [maven]
distribution: [temurin]
java: [17, 21, 23, 24-ea, 25-ea]
java: [17, 21, 23, 24-ea]
os: [ubuntu-latest]
fail-fast: false
max-parallel: 4
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/config/TestContainersConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* Utility interface to hold Docker image tags for the test containers we use
*/
public interface TestContainersConfiguration {
DockerImageName POSTGRES_LATEST = DockerImageName.parse("postgres:17.0");
DockerImageName MARIADB_LATEST = DockerImageName.parse("mariadb:11.5.2");
DockerImageName POSTGRES_LATEST = DockerImageName.parse("postgres:17.2");
DockerImageName MARIADB_LATEST = DockerImageName.parse("mariadb:11.6.2");
}

0 comments on commit 17ac0c0

Please sign in to comment.