From e455bc3b4a27f87da6980f45932cf119db02b498 Mon Sep 17 00:00:00 2001 From: Manuel Friedli Date: Thu, 12 Feb 2026 23:50:05 +0100 Subject: [PATCH] try this --- .forgejo/workflows/maven-build.yaml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.forgejo/workflows/maven-build.yaml b/.forgejo/workflows/maven-build.yaml index 6766317..7c6187e 100644 --- a/.forgejo/workflows/maven-build.yaml +++ b/.forgejo/workflows/maven-build.yaml @@ -3,19 +3,8 @@ jobs: maven-build: runs-on: docker container: - image: node:25-trixie + image: maven:3.9-eclipse-temurin-25 steps: - - name: Setup Java - uses: actions/setup-java@v5 - with: - distribution: 'temurin' - java-version: 25 - - name: Install maven - run: | - apt-get update - apt-get install -y maven - - name: Checkout repository - uses: actions/checkout@v6 - name: Run maven build run: mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V - name: Run tests