We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfc6a80 commit d8e66f8Copy full SHA for d8e66f8
.github/workflows/ci.yml
@@ -41,9 +41,17 @@ jobs:
41
uses: actions/cache@v1
42
with:
43
path: ~/.rustup
44
- key: ${{ runner.os }}-rustup-${{ matrix.rust }}-${{ hashFiles('**/Cargo.toml') }}
+ key: ${{ runner.os }}-rustup2-${{ matrix.rust }}-${{ hashFiles('**/Cargo.toml') }}
45
restore-key: |
46
- ${{ runner.os }}-rustup-${{ matrix.rust }}-
+ ${{ runner.os }}-rustup2-${{ matrix.rust }}-
47
+
48
+ - name: Cache cargo binaries
49
+ uses: actions/cache@v1
50
+ with:
51
+ path: ~/.cargo/bin
52
+ key: ${{ runner.os }}-cargo-bin-${{ matrix.rust }}-${{ hashFiles('**/Cargo.toml') }}
53
+ restore-key: |
54
+ ${{ runner.os }}-cargo-bin-${{ matrix.rust }}-
55
56
- name: Cache cargo registry cache
57
0 commit comments