From a841dfc280497a2ce334cdafa95ae50b4aebef60 Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Thu, 15 Jul 2021 15:49:35 +0200 Subject: [PATCH] build: use latest version of coursier/cache-action --- .github/workflows/validate.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index a8c0f6a..1ed6ac3 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -62,10 +62,7 @@ jobs: java-version: adopt@${{ matrix.jdk-version }} - name: Cache Coursier cache - uses: coursier/cache-action@v5 - with: - # add marker for the target scala-version, so that compiler bridge can be cached - extraKey: ${{ matrix.jdk-version }}-${{ matrix.scala-version }} + uses: coursier/cache-action@v6.2 - name: Compile and test for JDK ${{ matrix.jdk-version }}, Scala ${{ matrix.scala-version }} run: sbt -J-XX:ReservedCodeCacheSize=256M ++${{ matrix.scala-version }} test @@ -88,10 +85,7 @@ jobs: java-version: adopt@1.8 - name: Cache Coursier cache - uses: coursier/cache-action@v5 - with: - # add marker that this build uses cross building, so hopefully all compiler bridges will be cached - extraKey: cross + uses: coursier/cache-action@v6.2 - name: Publish run: sbt ci-release