From f9545ff64fbfa33504d2471d0bd63d6d92dc75f9 Mon Sep 17 00:00:00 2001 From: Martin Ledvinka Date: Tue, 17 Dec 2024 13:16:48 +0100 Subject: [PATCH] [Fix] Update GH actions config to make them runnable. --- .github/workflows/maven.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 42911e5..54411fa 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -2,9 +2,9 @@ name: Build on: push: - branches: [ master ] + branches: [ master, development ] pull_request: - branches: [ master ] + branches: [ master, development ] jobs: build: @@ -13,9 +13,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up JDK + - name: Set up JDK 17 uses: actions/setup-java@v3 with: - java-version: 17 + distribution: 'temurin' + java-version: '17' - name: Build with Maven run: mvn -B package --file pom.xml