Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/buf-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Restore proto/gen cache
id: restore-proto-gen
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: head/proto/gen
key: proto-gen-${{ hashFiles('head/proto/**/*.proto', 'head/proto/buf.gen.yaml', 'head/proto/buf.yaml') }}
Expand All @@ -52,7 +52,7 @@ jobs:
run: cd head/proto && buf generate
- name: Save proto/gen cache
if: steps.restore-proto-gen.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: head/proto/gen
key: proto-gen-${{ hashFiles('head/proto/**/*.proto', 'head/proto/buf.gen.yaml', 'head/proto/buf.yaml') }}
4 changes: 2 additions & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Restore Bazel external headers cache
id: cache-externals
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: bazel-external-includes.tar.gz
key: bazel-external-includes-v13-${{ hashFiles('MODULE.bazel') }}
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:

- name: Restore Bazel external headers cache
id: cache-externals
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: bazel-external-includes.tar.gz
key: bazel-external-includes-v13-${{ hashFiles('MODULE.bazel') }}
Expand Down
Loading