Skip to content
Merged
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: "8"
distribution: "adopt"
distribution: temurin
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml # add -X -V for debugging
run: mvn -B -T 1C clean install --file pom.xml --no-transfer-progress
Comment thread
jsnel marked this conversation as resolved.
Outdated
# extra argument taken from:
# https://github.com/actions/virtual-environments/issues/1499#issuecomment-689467080
Loading