From 3cfb94cfca38492fff1aa5c5d1421c19dc2fedf8 Mon Sep 17 00:00:00 2001 From: yoshinorin Date: Sun, 11 Feb 2024 02:45:52 +0900 Subject: [PATCH] ci: use `coursier/cache-action` instead of `actions/cache` --- .github/workflows/ci.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34d8d635..f560c1f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,17 +21,7 @@ jobs: fail-fast: false steps: - uses: actions/checkout@v4 - - name: Cache - uses: actions/cache@v4 - env: - cache-name: cache-sbt-libs - with: - path: | - ~/.ivy2/cache - ~/.sbt - ~/.cache/coursier/v1 - key: build-${{ env.cache-name }}-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/Dependencies.scala') }} - + - uses: coursier/cache-action@v6 - name: Set up JDK uses: actions/setup-java@v4 with: