Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #5601: Version upgrade for actions/cache #5603

Merged
merged 6 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
1 change: 1 addition & 0 deletions .github/workflows/wiki.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Deploy to Wiki

on:
pull_request:
paths:
Expand Down
Loading