From 54e81361f3f84b3333f988ae6743709c0eeb6020 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Nov 2022 20:06:58 +0000 Subject: [PATCH] Bump actions/cache from 3.0.2 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.2 to 3.0.11. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.0.2...v3.0.11) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ccbf363a..581f71b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: java-version: ${{ matrix.java }} - name: Cache sbt - uses: actions/cache@v3.0.2 + uses: actions/cache@v3.0.11 with: path: | ~/.sbt diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0b840cd5..1d8fe27b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,13 +20,13 @@ jobs: - uses: actions/setup-node@v3 - uses: olafurpg/setup-gpg@v3 - name: Cache dependencies - uses: actions/cache@v3.0.2 + uses: actions/cache@v3.0.11 with: path: ~/.cache/coursier/v1 key: ${{ runner.os }}-coursier-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }} restore-keys: ${{ runner.os }}-coursier- - name: Cache .sbt - uses: actions/cache@v3.0.2 + uses: actions/cache@v3.0.11 with: path: ~/.sbt key: ${{ runner.os }}-sbt-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }}