readd the checkout step, use java 21 temurin
Some checks failed
build / build (push) Failing after 22s

This commit is contained in:
Ryan Voots 2025-05-04 11:19:45 -04:00
parent 916700c5e4
commit 9556d8c5f4

View file

@ -10,10 +10,12 @@ jobs:
build: build:
runs-on: docker runs-on: docker
steps: steps:
- name: checkout repository
uses: https://gitea.com/actions/checkout@v2
- name: set up java - name: set up java
uses: https://gitea.com/actions/setup-java@v2 uses: https://gitea.com/actions/setup-java@v2
with: with:
java-version: '11' java-version: '21'
distribution: 'adopt' distribution: 'temurin'
- name: build with maven - name: build with maven
run: mvn --batch-mode --file pom.xml package run: mvn --batch-mode --file pom.xml package