Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
# cache see [cache/examples.md at main · actions/cache](https://github.com/actions/cache/blob/main/examples.md)
# Caches python pip
- name: Cache pip
uses: actions/cache@v3.0.11
uses: actions/cache@v3.3.1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand All @@ -24,15 +24,15 @@ jobs:

# Caches and restores the bazelisk download directory, the bazel build directory.
- name: Cache bazel
uses: actions/cache@v3.0.11
uses: actions/cache@v3.3.1
with:
path: |
~/.cache/bazelisk
~/.cache/bazel
key: ${{ runner.os }}-bazel-cache

- name: Cache nix packages
uses: actions/cache@v3.0.11
uses: actions/cache@v3.3.1
with:
path: |
/nix/store/
Expand Down