From f8ed2a20cc4863546d184bf64e82f17deea0f8d6 Mon Sep 17 00:00:00 2001 From: Joao Azevedo Date: Wed, 19 Jun 2024 12:21:46 +0100 Subject: [PATCH] Remove the coursier/cache-action step --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5e969e1..920e716f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,14 +26,16 @@ jobs: uses: actions/checkout@v4 - name: Setup up JDK + id: setup-java uses: actions/setup-java@v4 with: distribution: adopt java-version: ${{ matrix.java }} cache: sbt - - name: Cache sbt - uses: coursier/cache-action@v6 + - name: Update dependencies + if: steps.setup-java.outputs.cache-hit == 'false' + run: sbt +update - name: Compile and check format run: >-