From c0e298e374a402d1a93781523ae9a5c434e693c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Dec 2022 18:02:22 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.2.0 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.0. - [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.0) --- 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..5746ecb8 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.0 with: path: ~/.ivy2/cache key: ivy-${{hashFiles('**/*.sbt')}} restore-keys: | ivy- - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.0 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..6af2fcc6 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.0 with: path: ~/.ivy2/cache key: ivy-${{hashFiles('**/*.sbt')}} restore-keys: ivy- - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.0 with: path: ~/.sbt key: sbt-${{hashFiles('**/*.sbt')}}-${{hashFiles('project/build.properties')}}