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
14 changes: 7 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Cache Cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
# these represent dependencies downloaded by cargo
# and thus do not depend on the OS, arch nor rust version.
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
export PATH=$PATH:$HOME/d/protoc/bin
protoc --version
- name: Cache Cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /github/home/.cargo
# this key equals the ones on `linux-build-lib` for re-use
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
rustup default stable
rustup component add rustfmt clippy
- name: Cache Cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /home/runner/.cargo
# this key is not equal because the user is different than on a container (runner vs github)
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
with:
submodules: true
- name: Cache Cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /github/home/.cargo
# this key equals the ones on `linux-build-lib` for re-use
Expand All @@ -258,7 +258,7 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:
with:
submodules: true
- name: Cache Cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /github/home/.cargo
# this key equals the ones on `linux-build-lib` for re-use
Expand Down Expand Up @@ -327,7 +327,7 @@ jobs:
with:
submodules: true
- name: Cache Cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /github/home/.cargo
# this key equals the ones on `linux-build-lib` for re-use
Expand Down
Loading