Skip to content

Commit

Permalink
Support Flink 1.18 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorz8 authored Apr 11, 2024
1 parent b27010e commit 5fe848c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
flink: [ "1.17.1" ]
flink: [ "1.17.2", "1.18.1", "1.19.0" ]
jdk: [ "11" ]
steps:
- uses: actions/checkout@v3

- name: Set up JDK 11
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: ${{ matrix.jdk }}
distribution: 'adopt'
cache: maven

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<elasticsearch.version>8.11.1</elasticsearch.version>
<flink.version>1.17.1</flink.version>
<flink-connector-jdbc.version>3.1.1-1.17</flink-connector-jdbc.version>
<flink.version>1.18.1</flink.version>
<flink-connector-jdbc.version>3.1.2-1.18</flink-connector-jdbc.version>
<jackson.version>2.15.2</jackson.version>

<!-- Test -->
Expand Down

0 comments on commit 5fe848c

Please sign in to comment.