Fix Gitea CI: add JDK setup, drop unsupported cache action
build / build (push) Failing after 2m42s

This commit is contained in:
Michael Burgess
2026-08-06 20:28:59 -04:00
parent f8ba0e4efc
commit 3e65b02d72
+4 -6
View File
@@ -15,13 +15,11 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Cache dependencies - name: Set up JDK
uses: actions/cache@v2 uses: actions/setup-java@v4
with: with:
path: ~/.m2/repository distribution: temurin
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} java-version: '11'
restore-keys: |
${{ runner.os }}-maven-
- name: Build, test, package - name: Build, test, package
run: ./mvnw -B package --file pom.xml run: ./mvnw -B package --file pom.xml