Skip to content

Commit 1677b54

Browse files
committed
Update Dockerfile and GA workflows to use java 17
1 parent c7450fd commit 1677b54

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/setup-java@v3
2626
with:
2727
distribution: temurin
28-
java-version: 11
28+
java-version: 17
2929

3030
- name: Setup Gradle
3131
uses: gradle/gradle-build-action@v2

.github/workflows/oura.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/setup-java@v3
2626
with:
2727
distribution: temurin
28-
java-version: 11
28+
java-version: 17
2929

3030
- name: Setup Gradle
3131
uses: gradle/gradle-build-action@v2

.github/workflows/release-fitbit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/setup-java@v3
2121
with:
2222
distribution: temurin
23-
java-version: 11
23+
java-version: 17
2424

2525
- name: Gradle cache
2626
uses: actions/cache@v3

.github/workflows/release-oura.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/setup-java@v3
2121
with:
2222
distribution: temurin
23-
java-version: 11
23+
java-version: 17
2424

2525
- name: Gradle cache
2626
uses: actions/cache@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Fitbit in particular. The documentation of the Kafka Connect REST source still n
88
### Installation
99

1010
This repository relies on a recent version of docker and docker-compose as well as an installation
11-
of Java 11 or later.
11+
of Java 17 or later.
1212

1313
### Usage
1414

kafka-connect-fitbit-source/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM --platform=$BUILDPLATFORM gradle:8.4-jdk11 as builder
15+
FROM --platform=$BUILDPLATFORM gradle:8.4-jdk17 as builder
1616

1717
RUN mkdir /code
1818
WORKDIR /code

kafka-connect-oura-source/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM --platform=$BUILDPLATFORM gradle:8.4-jdk11 as builder
15+
FROM --platform=$BUILDPLATFORM gradle:8.4-jdk17 as builder
1616

1717
RUN mkdir /code
1818
WORKDIR /code

0 commit comments

Comments
 (0)