This is an automated email from the ASF dual-hosted git repository. kunni pushed a commit to branch FLINK-38730-copy in repository https://gitbox.apache.org/repos/asf/flink-cdc.git
commit e79a46af61dd18d600e8cd856e56bf8acf6d497e Author: lvyanquan <[email protected]> AuthorDate: Mon Dec 8 10:29:29 2025 +0800 Address comment. --- .github/workflows/flink_cdc_ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/flink_cdc_ci.yml b/.github/workflows/flink_cdc_ci.yml index b84c51137..0317ad017 100644 --- a/.github/workflows/flink_cdc_ci.yml +++ b/.github/workflows/flink_cdc_ci.yml @@ -50,7 +50,7 @@ jobs: - name: Set JDK uses: actions/setup-java@v4 with: - java-version: '11' + java-version: '17' distribution: 'temurin' cache: 'maven' - name: Compiling jar packages @@ -61,19 +61,19 @@ jobs: name: Common Unit Tests uses: ./.github/workflows/flink_cdc_base.yml with: - java-versions: "[11]" + java-versions: "[17]" modules: "['core']" pipeline-ut: name: Pipeline Unit Tests uses: ./.github/workflows/flink_cdc_base.yml with: - java-versions: "[11]" + java-versions: "[17]" modules: "['mysql-pipeline', 'postgres-pipeline', 'oceanbase-pipeline', 'doris', 'elasticsearch', 'iceberg', 'kafka', 'maxcompute', 'paimon', 'starrocks', 'fluss']" source-ut: name: Source Unit Tests uses: ./.github/workflows/flink_cdc_base.yml with: - java-versions: "[11]" + java-versions: "[17]" modules: "['mysql-source', 'postgres-source', 'oracle', 'mongodb7', 'mongodb8', 'sqlserver', 'tidb', 'oceanbase-source', 'db2', 'vitess']" pipeline_e2e: strategy: @@ -83,7 +83,7 @@ jobs: name: Pipeline E2E Tests (${{ matrix.parallelism }}-Parallelism) uses: ./.github/workflows/flink_cdc_base.yml with: - java-versions: "[11]" + java-versions: "[17]" flink-versions: "['1.19.3', '1.20.3']" modules: "['pipeline_e2e']" parallelism: ${{ matrix.parallelism }} @@ -91,6 +91,6 @@ jobs: name: Source E2E Tests uses: ./.github/workflows/flink_cdc_base.yml with: - java-versions: "[11]" + java-versions: "[17]" flink-versions: "['1.19.3', '1.20.3']" modules: "['source_e2e']"
