Skip to content

Commit ff34ed9

Browse files
Bump actions/cache from 3 to 4 (#1634)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c18a8da commit ff34ed9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
fetch-depth: 0
1515
- name: Scala caches
16-
uses: actions/cache@v3
16+
uses: actions/cache@v4
1717
with:
1818
path: |
1919
~/.sbt
@@ -46,7 +46,7 @@ jobs:
4646
with:
4747
fetch-depth: 0
4848
- name: Scala caches
49-
uses: actions/cache@v3
49+
uses: actions/cache@v4
5050
with:
5151
path: |
5252
~/.sbt

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
distribution: temurin
2929

3030
- name: Mount caches
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: |
3434
~/.sbt
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- uses: actions/checkout@v4
50-
- uses: actions/cache@v3
50+
- uses: actions/cache@v4
5151
id: conformance-cache
5252
with:
5353
key: conformance-${{ runner.os }}-${{hashFiles('conformance/build_test_runner.sh')}}
@@ -56,7 +56,7 @@ jobs:
5656
# Build conformance_test_runner on a cache miss
5757
- uses: bazelbuild/setup-bazelisk@v3
5858
if: steps.conformance-cache.outputs.cache-hit != 'true'
59-
- uses: actions/cache@v3
59+
- uses: actions/cache@v4
6060
if: steps.conformance-cache.outputs.cache-hit != 'true'
6161
with:
6262
path: |
@@ -65,7 +65,7 @@ jobs:
6565
- run: conformance/build_test_runner.sh
6666
if: steps.conformance-cache.outputs.cache-hit != 'true'
6767

68-
- uses: actions/cache@v3
68+
- uses: actions/cache@v4
6969
with:
7070
path: |
7171
~/.sbt

0 commit comments

Comments
 (0)