From 6791e8379af3955d5f4992ad05f2558f2f0459eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jan 2023 18:04:06 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.2.4 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.4. - [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.4) --- 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..e30d99ca 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.4 with: path: ~/.ivy2/cache key: ivy-${{hashFiles('**/*.sbt')}} restore-keys: | ivy- - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.4 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..e1c52275 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.4 with: path: ~/.ivy2/cache key: ivy-${{hashFiles('**/*.sbt')}} restore-keys: ivy- - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.4 with: path: ~/.sbt key: sbt-${{hashFiles('**/*.sbt')}}-${{hashFiles('project/build.properties')}}