From 2baaa3882fec411d84fed65c3a621d3e52861689 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 11:00:57 +0000 Subject: [PATCH] Bump actions/cache from 1 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 1 to 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/v1...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/master-codecov.yml | 4 ++-- .github/workflows/master-release.yml | 4 ++-- .github/workflows/pr-checks.yml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/master-codecov.yml b/.github/workflows/master-codecov.yml index 5bae43f2..1249d50f 100644 --- a/.github/workflows/master-codecov.yml +++ b/.github/workflows/master-codecov.yml @@ -11,12 +11,12 @@ jobs: - uses: olafurpg/setup-scala@v14 with: java-version: adopt@1.11 - - uses: actions/cache@v1 + - uses: actions/cache@v4 with: path: ~/.ivy2/cache key: ivy-${{hashFiles('**/*.sbt')}} restore-keys: ivy- - - uses: actions/cache@v1 + - uses: actions/cache@v4 with: path: ~/.sbt key: sbt-${{hashFiles('**/*.sbt')}}-${{hashFiles('project/build.properties')}} diff --git a/.github/workflows/master-release.yml b/.github/workflows/master-release.yml index 932c93c9..c4ce27d8 100644 --- a/.github/workflows/master-release.yml +++ b/.github/workflows/master-release.yml @@ -24,13 +24,13 @@ jobs: echo $PGP_SECRET | base64 --decode | gpg --import --no-tty --batch --yes env: PGP_SECRET: ${{secrets.PGP_SECRET}} - - uses: actions/cache@v1 + - uses: actions/cache@v4 with: path: ~/.ivy2/cache key: ivy-${{hashFiles('**/*.sbt')}} restore-keys: | ivy- - - uses: actions/cache@v1 + - uses: actions/cache@v4 with: path: ~/.sbt key: sbt-${{hashFiles('**/*.sbt')}}-${{hashFiles('project/build.properties')}} diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 76b48ec9..fac5136b 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -19,12 +19,12 @@ jobs: - uses: olafurpg/setup-scala@v14 with: java-version: adopt@1.${{matrix.java}} - - uses: actions/cache@v1 + - uses: actions/cache@v4 with: path: ~/.ivy2/cache key: ivy-${{hashFiles('**/*.sbt')}}-${{matrix.scala}} restore-keys: ivy- - - uses: actions/cache@v1 + - uses: actions/cache@v4 with: path: ~/.sbt key: sbt-${{hashFiles('**/*.sbt')}}-${{hashFiles('project/build.properties')}}-${{matrix.scala}} @@ -38,12 +38,12 @@ jobs: - uses: olafurpg/setup-scala@v14 with: java-version: adopt@1.11 - - uses: actions/cache@v1 + - uses: actions/cache@v4 with: path: ~/.ivy2/cache key: ivy-${{hashFiles('**/*.sbt')}} restore-keys: ivy- - - uses: actions/cache@v1 + - uses: actions/cache@v4 with: path: ~/.sbt key: sbt-${{hashFiles('**/*.sbt')}}-${{hashFiles('project/build.properties')}}