From b933cd428d380e9029b922d7a9dbc2246e500950 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Mar 2023 20:57:00 +0000 Subject: [PATCH] Bump actions/cache from 3.0.2 to 3.2.6 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.2 to 3.2.6. - [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.2.6) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... 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..032ad607 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.2.6 with: path: | ~/.sbt diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0b840cd5..22e9dde5 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.2.6 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.2.6 with: path: ~/.sbt key: ${{ runner.os }}-sbt-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }}