Skip to content

Commit

Permalink
Use setup-java action to cache dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: jongwooo <[email protected]>
  • Loading branch information
jongwooo authored and marcusdacoregio committed Nov 7, 2023
1 parent aa42d96 commit 357d75f
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/continuous-integraion-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: '17'
- name: Cache Gradle packages
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
distribution: 'temurin'
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew check --continue

0 comments on commit 357d75f

Please sign in to comment.