Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Update all dependencies #238

Update all dependencies

Update all dependencies #238

Workflow file for this run

name: Java CI with Gradle
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17 ]
fail-fast: true
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up JDK ${{ matrix.java }}
uses: actions/[email protected]
with:
distribution: adopt
java-version: ${{ matrix.java }}
- name: Cache Gradle
uses: actions/[email protected]
with:
path: ~/.gradle
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: ${{ runner.os }}-gradle-
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build
run: ./gradlew build
- name: Upload JAR
uses: actions/[email protected]
with:
name: "Successfully build EternalCheck JDK${{ matrix.jdk }}"
path: "build/libs/EternalCheck*.jar"