Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4 (#1634)
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Feb 7, 2024
1 parent c18a8da commit ff34ed9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
fetch-depth: 0
- name: Scala caches
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.sbt
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
with:
fetch-depth: 0
- name: Scala caches
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.sbt
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
distribution: temurin

- name: Mount caches
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.sbt
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
- uses: actions/cache@v4
id: conformance-cache
with:
key: conformance-${{ runner.os }}-${{hashFiles('conformance/build_test_runner.sh')}}
Expand All @@ -56,7 +56,7 @@ jobs:
# Build conformance_test_runner on a cache miss
- uses: bazelbuild/setup-bazelisk@v3
if: steps.conformance-cache.outputs.cache-hit != 'true'
- uses: actions/cache@v3
- uses: actions/cache@v4
if: steps.conformance-cache.outputs.cache-hit != 'true'
with:
path: |
Expand All @@ -65,7 +65,7 @@ jobs:
- run: conformance/build_test_runner.sh
if: steps.conformance-cache.outputs.cache-hit != 'true'

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
~/.sbt
Expand Down

0 comments on commit ff34ed9

Please sign in to comment.