File tree Expand file tree Collapse file tree 4 files changed +29
-12
lines changed
src/main/java/com/opentable/db/postgres/embedded Expand file tree Collapse file tree 4 files changed +29
-12
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,16 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
17
17
steps :
18
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v4
19
19
- name : Set up JDK 17
20
- uses : actions/setup-java@v2
20
+ uses : actions/setup-java@v4
21
21
with :
22
22
java-version : ' 17'
23
- distribution : ' temurin'
23
+ distribution : ' corretto'
24
+ cache : maven
25
+ - name : Specific Maven Version
26
+ run : mvn wrapper:wrapper -Dmaven=3.9.9
27
+ - name : test maven version
28
+ run : ./mvnw -v
24
29
- name : Build with Maven
25
- run : mvn -B package --file pom.xml
30
+ run : ./mvnw -B package --file pom.xml
Original file line number Diff line number Diff line change
1
+ 1.1.1
2
+ ----
3
+ More or less dependency updates
4
+
5
+ * testcontainers 1.20.6
6
+ * postgres 42.7.5
7
+ * flyway 10.20.1
8
+ * commons-lang 3.17.0
9
+ * commons-compress 1.27.1
10
+ * junit 5.11.4
11
+ * slf4j 2.0.17
12
+ * Default docker image tag is now ` 17-alpine ` (previously ` 13-alpine ` )
1
13
2
14
1.1.0
3
15
-----
Original file line number Diff line number Diff line change 41
41
<project .build.targetJdk>11</project .build.targetJdk>
42
42
<maven .compiler.target>${project.build.targetJdk} </maven .compiler.target>
43
43
<project .build.systemJdk>${project.build.targetJdk} </project .build.systemJdk>
44
- <dep .testcontainers.version>1.19.8 </dep .testcontainers.version>
45
- <dep .postgres-jdbc.version>42.7.3 </dep .postgres-jdbc.version>
44
+ <dep .testcontainers.version>1.20.6 </dep .testcontainers.version>
45
+ <dep .postgres-jdbc.version>42.7.5 </dep .postgres-jdbc.version>
46
46
<dep .liquibase.version>4.23.1</dep .liquibase.version>
47
- <dep .slf4j.version>1.7.36 </dep .slf4j.version>
48
- <dep .jackson.version>2.15.2 </dep .jackson.version>
49
- <dep .flyway.version>10.10.0 </dep .flyway.version>
47
+ <dep .slf4j.version>2.0.17 </dep .slf4j.version>
48
+ <dep .jackson.version>2.18.3 </dep .jackson.version>
49
+ <dep .flyway.version>10.20.1 </dep .flyway.version>
50
50
<dep .commons-lang.version>3.18.0</dep .commons-lang.version>
51
- <dep .commons-compress.version>1.26.0 </dep .commons-compress.version>
51
+ <dep .commons-compress.version>1.27.1 </dep .commons-compress.version>
52
52
<dep .junit.version>4.13.2</dep .junit.version>
53
- <dep .junit5.version>5.8.2 </dep .junit5.version>
53
+ <dep .junit5.version>5.11.4 </dep .junit5.version>
54
54
<basepom .test.timeout>1800</basepom .test.timeout>
55
55
<basepom .javadoc.skip>false</basepom .javadoc.skip>
56
56
<basepom .oss.skip-scala-doc>true</basepom .oss.skip-scala-doc>
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ public class EmbeddedPostgres implements Closeable {
62
62
static final String ENV_DOCKER_PREFIX = "TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX" ;
63
63
// 3) Otherwise we'll just pull from docker hub with the DOCKER_DEFAULT_TAG
64
64
static final DockerImageName DOCKER_DEFAULT_IMAGE_NAME = DockerImageName .parse (POSTGRES );
65
- static final String DOCKER_DEFAULT_TAG = "13 -alpine" ;
65
+ static final String DOCKER_DEFAULT_TAG = "17 -alpine" ;
66
66
// Note you can override any of these defaults explicitly in the builder.
67
67
68
68
private final PostgreSQLContainer <?> postgreDBContainer ;
You can’t perform that action at this time.
0 commit comments