From 74b883bb3ae8ef76d5525ce91514f36bc0f69e96 Mon Sep 17 00:00:00 2001 From: Sergey Nazarov Date: Fri, 22 Mar 2024 16:04:24 +0200 Subject: [PATCH] wip --- .github/workflows/check-pr.yaml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/check-pr.yaml b/.github/workflows/check-pr.yaml index 5e0a365ebc..288cbf5622 100644 --- a/.github/workflows/check-pr.yaml +++ b/.github/workflows/check-pr.yaml @@ -7,20 +7,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: - distribution: 'zulu' + distribution: 'temurin' java-version: '11' - - name: Cache SBT - uses: actions/cache@v3 - with: - path: ~/.sbt - key: sbt-cache-${{ hashFiles('project/build.properties') }} - - name: Cache Coursier - uses: actions/cache@v3 - with: - path: ~/.cache/coursier - key: coursier-cache + cache: 'sbt' - name: Check PR run: sbt --mem 4096 --batch ";checkPR;completeQaseRun" env: