From ff444abc5607d5dfa24cf93f1940bf1b945da82f Mon Sep 17 00:00:00 2001 From: Dawson Date: Tue, 21 Oct 2025 10:02:51 -0400 Subject: [PATCH] Potentially fixing cache? --- .github/workflows/maven.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index e043b17..ea850fe 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -18,14 +18,12 @@ jobs: uses: actions/setup-java@v5 with: java-version: '17' - distribution: 'temurin' + distribution: 'zulu' cache: maven - - uses: actions/cache@v4 + - name: Set up Maven + uses: stCarolas/setup-maven@v5 with: - path: ~/.m2/ - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- + maven-version: 3.9.6 - name: Build with Maven run: mvn -B package --file pom.xml