From d24517a5cf8315a698f39351bcad111863db2c16 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 21 Sep 2024 04:01:47 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7c8d1f12..1f83e267 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v2 - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -56,12 +56,12 @@ jobs: java-version: 11 - name: Cache SBT ivy cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.ivy2/cache key: ${{ runner.os }}-sbt-ivy-cache-${{ hashFiles('**/build.sbt') }} - name: Cache SBT - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.sbt key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}