diff --git a/.github/workflows/fabric.yml b/.github/workflows/fabric.yml index f23cb69e..35ec978d 100644 --- a/.github/workflows/fabric.yml +++ b/.github/workflows/fabric.yml @@ -9,8 +9,8 @@ jobs: uses: actions/checkout@v4 with: persist-credentials: false - - name: Validate Gradle Wrapper - uses: gradle/actions/wrapper-validation@v4 + - name: Set up Gradle + uses: gradle/actions/setup-gradle@v4 - name: Extract build version information id: ref run: .github/extract_refs.sh @@ -20,16 +20,6 @@ jobs: distribution: 'temurin' java-version: 21 check-latest: true - - name: Initialize caches - uses: actions/cache@v4 - with: - path: | - ~/.gradle/caches - ~/.gradle/loom-cache - ~/.gradle/wrapper - key: ${{ runner.os }}-build-fabric-${{ steps.ref.outputs.minecraft_version }} - restore-keys: | - ${{ runner.os }}-build-fabric- - name: Compile with Gradle run: ./gradlew build - name: Upload compiled artifacts