Skip to content

Commit

Permalink
version change
Browse files Browse the repository at this point in the history
  • Loading branch information
manas-yu committed Dec 18, 2024
1 parent 1273c31 commit d54cefd
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
# with Bazel since Bazel can share the most recent cache from an unrelated build and still
# benefit from incremental build performance (assuming that actions/cache aggressively removes
# older caches due to the 5GB cache limit size & Bazel's large cache size).
- uses: actions/cache@v2
- uses: actions/cache@v4
id: cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
# with Bazel since Bazel can share the most recent cache from an unrelated build and still
# benefit from incremental build performance (assuming that actions/cache aggressively removes
# older caches due to the 5GB cache limit size & Bazel's large cache size).
- uses: actions/cache@v2
- uses: actions/cache@v4
id: cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down Expand Up @@ -325,7 +325,7 @@ jobs:
# with Bazel since Bazel can share the most recent cache from an unrelated build and still
# benefit from incremental build performance (assuming that actions/cache aggressively removes
# older caches due to the 5GB cache limit size & Bazel's large cache size).
- uses: actions/cache@v2
- uses: actions/cache@v4
id: cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down Expand Up @@ -459,7 +459,7 @@ jobs:
# with Bazel since Bazel can share the most recent cache from an unrelated build and still
# benefit from incremental build performance (assuming that actions/cache aggressively removes
# older caches due to the 5GB cache limit size & Bazel's large cache size).
- uses: actions/cache@v2
- uses: actions/cache@v4
id: cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down Expand Up @@ -580,7 +580,7 @@ jobs:
# with Bazel since Bazel can share the most recent cache from an unrelated build and still
# benefit from incremental build performance (assuming that actions/cache aggressively removes
# older caches due to the 5GB cache limit size & Bazel's large cache size).
- uses: actions/cache@v2
- uses: actions/cache@v4
id: cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/code_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
with:
version: 6.5.0

- uses: actions/cache@v2
- uses: actions/cache@v4
id: scripts_cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
with:
version: 6.5.0

- uses: actions/cache@v2
- uses: actions/cache@v4
id: scripts_cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
# with Bazel since Bazel can share the most recent cache from an unrelated build and still
# benefit from incremental build performance (assuming that actions/cache aggressively removes
# older caches due to the 5GB cache limit size & Bazel's large cache size).
- uses: actions/cache@v2
- uses: actions/cache@v4
id: test_cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
with:
version: 6.5.0

- uses: actions/cache@v2
- uses: actions/cache@v4
id: scripts_cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v4
id: cache
with:
path: ~/.gradle
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}-jars-{{ checksum "build.gradle" }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
with:
version: 6.5.0

- uses: actions/cache@v2
- uses: actions/cache@v4
id: scripts_cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
# with Bazel since Bazel can share the most recent cache from an unrelated build and still
# benefit from incremental build performance (assuming that actions/cache aggressively removes
# older caches due to the 5GB cache limit size & Bazel's large cache size).
- uses: actions/cache@v2
- uses: actions/cache@v4
if: ${{ steps.track_commits.outputs.new_commits == 'true' }}
id: cache
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
version: 6.5.0

- uses: actions/cache@v2
- uses: actions/cache@v4
id: scripts_cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
with:
version: 6.5.0

- uses: actions/cache@v2
- uses: actions/cache@v4
id: scripts_cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
# with Bazel since Bazel can share the most recent cache from an unrelated build and still
# benefit from incremental build performance (assuming that actions/cache aggressively removes
# older caches due to the 5GB cache limit size & Bazel's large cache size).
- uses: actions/cache@v2
- uses: actions/cache@v4
id: test_cache
with:
path: ${{ env.CACHE_DIRECTORY }}
Expand Down

0 comments on commit d54cefd

Please sign in to comment.