Skip to content

Commit 4d140f3

Browse files
committed
Rename CI Bazel cache to bazel-disk-cache
1 parent ccb185c commit 4d140f3

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.bazelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build --announce_rc
1212
# We do not enable the repository cache to cache downloaded external artifacts
1313
# as these are generally faster to download again than to fetch them from the
1414
# GitHub actions cache.
15-
build --disk_cache=~/.cache/bazel
15+
build --disk_cache=~/.cache/bazel-disk-cache
1616
# Don't rely on test logs being easily accessible from the test runner,
1717
# though it makes the log noisier.
1818
test --test_output=errors

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
- name: Mount bazel caches
17-
uses: actions/cache@v3
17+
uses: actions/cache@v4
1818
with:
1919
path: |
20-
~/.cache/bazel
20+
~/.cache/bazel-disk-cache
2121
key: bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE', 'WORKSPACE.bzlmod') }}
2222
restore-keys: bazel-cache-
2323
- name: Install JDK 11
24-
uses: actions/setup-java@v3
24+
uses: actions/setup-java@v4
2525
with:
2626
distribution: "zulu"
2727
java-version: "11"
2828
- name: Prepare release notes and artifacts
29-
run: .github/workflows/release_prep.sh ${{ env.GITHUB_REF_NAME }}
29+
run: .github/workflows/release_prep.sh ${{ github.ref_name }}
3030
- name: Release
31-
uses: softprops/action-gh-release@v1
31+
uses: softprops/action-gh-release@v2
3232
with:
3333
prerelease: true
3434
# Use GH feature to populate the changelog automatically

0 commit comments

Comments
 (0)