From 01db40abfceefeb954d1dc9b03b940d9e1319e2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Dec 2022 18:02:16 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.2.1 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.1. - [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/v2.1.6...v3.2.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3b54fd3b..db126d03 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,13 +23,13 @@ jobs: echo $PGP_SECRET | base64 --decode | gpg --import --no-tty --batch --yes env: PGP_SECRET: ${{secrets.PGP_SECRET}} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.1 with: path: ~/.ivy2/cache key: ivy-${{hashFiles('**/*.sbt')}} restore-keys: | ivy- - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.1 with: path: ~/.sbt key: sbt-${{hashFiles('**/*.sbt')}}-${{hashFiles('project/build.properties')}} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 30236f44..157bfd09 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,12 +14,12 @@ jobs: - uses: olafurpg/setup-scala@v13 with: java-version: adopt@1.${{matrix.java}} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.1 with: path: ~/.ivy2/cache key: ivy-${{hashFiles('**/*.sbt')}} restore-keys: ivy- - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.1 with: path: ~/.sbt key: sbt-${{hashFiles('**/*.sbt')}}-${{hashFiles('project/build.properties')}}