Skip to content

Commit

Permalink
[FLINK-33378] Prepare actions for flink version 1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
eskabetxe committed Nov 26, 2023
1 parent a2fd18a commit 79e7509
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
compile_and_test:
strategy:
matrix:
flink: [1.17-SNAPSHOT, 1.18-SNAPSHOT]
flink: [1.16-SNAPSHOT, 1.17-SNAPSHOT, 1.18-SNAPSHOT]
uses: apache/flink-connector-shared-utils/.github/workflows/ci.yml@ci_utils
with:
flink_version: ${{ matrix.flink }}
2 changes: 1 addition & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
flink: 1.17.1,
branch: v3.1
}, {
flink: 1.18-SNAPSHOT,
flink: 1.18.0,
branch: v3.1
}]
uses: apache/flink-connector-shared-utils/.github/workflows/ci.yml@ci_utils
Expand Down
31 changes: 26 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ under the License.
</modules>

<properties>
<flink.version>1.17.0</flink.version>
<flink.version>1.16.2</flink.version>

<jackson-bom.version>2.13.4.20221013</jackson-bom.version>
<junit4.version>4.13.2</junit4.version>
<junit5.version>5.9.1</junit5.version>
<assertj.version>3.23.1</assertj.version>
<testcontainers.version>1.18.2</testcontainers.version>
<mockito.version>2.21.0</mockito.version>
<junit5.version>5.10.1</junit5.version>
<assertj.version>3.24.2</assertj.version>
<testcontainers.version>1.19.3</testcontainers.version>
<mockito.version>3.12.4</mockito.version>

<japicmp.referenceVersion>3.0.0-1.16</japicmp.referenceVersion>

Expand Down Expand Up @@ -301,6 +301,13 @@ under the License.
<version>1.23.0</version>
</dependency>

<!-- For dependency convergence -->
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.1.10.4</version>
</dependency>

<!-- For dependency convergence on mockito/powermock mismatch -->
<dependency>
<groupId>net.bytebuddy</groupId>
Expand All @@ -315,6 +322,20 @@ under the License.
<version>1.12.10</version>
</dependency>

<!-- For dependency convergence on crate-jdbc mismatch -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
</dependency>

<!-- For dependency convergence on crate-jdbc mismatch -->
<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
<version>3.12.0</version>
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
Expand Down

0 comments on commit 79e7509

Please sign in to comment.