Skip to content

Commit cf70d25

Browse files
committed
ensure cargo cache keys match
1 parent ca84130 commit cf70d25

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/push.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- uses: actions/cache@v4
3434
with:
3535
path: ~/.cargo
36+
# THIS KEY MUST MATCH BELOW
3637
key: cargo-cache-1-${{ runner.os }}
3738
- uses: moonrepo/setup-rust@v1
3839
- run: rustup default stable
@@ -62,7 +63,8 @@ jobs:
6263
- uses: actions/cache@v4
6364
with:
6465
path: ~/.cargo
65-
key: cargo-cache-${{ runner.os }}
66+
# THIS KEY MUST MATCH ABOVE
67+
key: cargo-cache-1-${{ runner.os }}
6668
- uses: actions/cache@v4
6769
with:
6870
path: |

0 commit comments

Comments
 (0)