Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 17
- name: Set up JDK 25
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '25'
distribution: 'temurin'
- uses: actions/checkout@v4
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
setup:
runs-on: ubuntu-latest
container:
image: maven:3.9.9-eclipse-temurin-17-focal
image: maven:3.9.14-eclipse-temurin-25
options: --user 1001

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
jobs:
build:
runs-on: ubuntu-latest
container: maven:3.8.7-eclipse-temurin-17-alpine
container: maven:3.9.14-eclipse-temurin-25

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion admin-ui/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:21-alpine
FROM eclipse-temurin:25-alpine
LABEL org.opencontainers.image.source https://github.com/tno/knowledge-engine
LABEL org.opencontainers.image.description="Knowledge Engine: Admin UI"
LABEL org.opencontainers.image.licenses=Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion knowledge-directory/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:21-alpine
FROM eclipse-temurin:25-alpine
LABEL org.opencontainers.image.source https://github.com/tno/knowledge-engine
LABEL org.opencontainers.image.description="Knowledge Engine: Knowledge Directory"
LABEL org.opencontainers.image.licenses=Apache-2.0
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@
<jersey3-version>3.1.11</jersey3-version>
<jackson-version>2.20.2</jackson-version>
<junit-jupiter-version>6.0.3</junit-jupiter-version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>25</maven.compiler.source>
<maven.compiler.target>25</maven.compiler.target>
<revision>1.4.1-SNAPSHOT</revision>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion smart-connector-rest-dist/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:21-alpine
FROM eclipse-temurin:25-alpine
LABEL org.opencontainers.image.source https://github.com/tno/knowledge-engine
LABEL org.opencontainers.image.description="Knowledge Engine: Smart Connector (with HTTP API)"
LABEL org.opencontainers.image.licenses=Apache-2.0
Expand Down
Loading