Skip to content

Commit 99c03fa

Browse files
authored
chore(ci): bump tarantool 2.x default docker image (#132)
* chore(ci): bump tarantool 2.x default docker image - Bump Tarantool 2.x default docker image from 2.11.2-ubuntu20.04 to 2.11.8-ubuntu20.04 - Change JDK distribution from Zulu to Temurin
1 parent 41f8d63 commit 99c03fa

File tree

7 files changed

+13
-12
lines changed

7 files changed

+13
-12
lines changed

.github/workflows/prepare_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up JDK 8
2525
uses: actions/setup-java@v5
2626
with:
27-
distribution: 'zulu'
27+
distribution: 'temurin'
2828
java-version: '8'
2929
cache: 'maven'
3030

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up JDK 8
1616
uses: actions/setup-java@v5
1717
with:
18-
distribution: 'zulu'
18+
distribution: 'temurin'
1919
java-version: '8'
2020
cache: 'maven'
2121
server-id: central

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up JDK 8
1919
uses: actions/setup-java@v5
2020
with:
21-
distribution: 'zulu'
21+
distribution: 'temurin'
2222
java-version: '8'
2323
cache: 'maven'
2424
server-id: central-portal-snapshots

.github/workflows/tests.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,13 @@ jobs:
1818
if: "!contains(github.event.head_commit.message, '[maven-release-plugin]')"
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 25
21-
strategy:
22-
fail-fast: false
2321
steps:
2422
- uses: actions/checkout@v4
2523

2624
- name: Set up JDK 1.8
2725
uses: actions/setup-java@v5
2826
with:
29-
distribution: 'zulu'
27+
distribution: 'temurin'
3028
java-version: '8'
3129
cache: 'maven'
3230

@@ -43,7 +41,7 @@ jobs:
4341
env:
4442
TARANTOOL_SERVER_USER: root
4543
TARANTOOL_SERVER_GROUP: root
46-
TARANTOOL_VERSION: "2.11.2-ubuntu20.04"
44+
TARANTOOL_VERSION: "2.11.8-ubuntu20.04"
4745
run: ./mvnw -B test -P integration -Djacoco.destFile=target/jacoco-cartridge-container.exec --file pom.xml
4846

4947
- name: Print system images
@@ -63,15 +61,15 @@ jobs:
6361
timeout-minutes: 25
6462
strategy:
6563
matrix:
66-
tarantool-version: [ "1.x-centos7", "2.11.2-ubuntu20.04", "3.0.1-old" ]
64+
tarantool-version: [ "1.x-centos7", "2.11.8-ubuntu20.04", "3.0.1-old" ]
6765
fail-fast: false
6866
steps:
6967
- uses: actions/checkout@v4
7068

7169
- name: Set up JDK 1.8
7270
uses: actions/setup-java@v5
7371
with:
74-
distribution: 'zulu'
72+
distribution: 'temurin'
7573
java-version: '8'
7674
cache: 'maven'
7775

@@ -109,7 +107,7 @@ jobs:
109107
- name: Set up JDK 1.8
110108
uses: actions/setup-java@v5
111109
with:
112-
distribution: 'zulu'
110+
distribution: 'temurin'
113111
java-version: '8'
114112
cache: 'maven'
115113

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## [Unreleased]
44

5+
- Change `TARANTOOL_VERSION` default value from `2.11.2-ubuntu20.04` to `2.11.8-ubuntu20.04`
6+
- CI/CD: Change JDK distribution from Zulu to Temurin
7+
58
## [1.4.1] - 2025-11-07
69
- Bump httpclient from 4.5.14 to httpclient5 5.5.1
710
- Bump various maven plugins

src/main/java/org/testcontainers/containers/TarantoolContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class TarantoolContainer extends GenericContainer<TarantoolContainer>
1818
implements TarantoolContainerOperations<TarantoolContainer> {
1919

2020
public static final String DEFAULT_IMAGE = "tarantool/tarantool";
21-
public static final String DEFAULT_TAG = "2.11.2-ubuntu20.04";
21+
public static final String DEFAULT_TAG = "2.11.8-ubuntu20.04";
2222
public static final String DEFAULT_BASE_IMAGE = String.format("%s:%s", DEFAULT_IMAGE, DEFAULT_TAG);
2323

2424

src/main/resources/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG IMAGE="tarantool/tarantool"
2-
ARG TARANTOOL_VERSION="2.11.2-ubuntu20.04"
2+
ARG TARANTOOL_VERSION="2.11.8-ubuntu20.04"
33
FROM $IMAGE:$TARANTOOL_VERSION AS cartridge-base
44

55
ARG TARANTOOL_SERVER_USER="root"

0 commit comments

Comments
 (0)