Skip to content

Commit d5f0f6d

Browse files
Fix caching
1 parent 4be52d8 commit d5f0f6d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.claude/settings.local.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"Bash(test:*)",
2727
"WebFetch(domain:github.com)",
2828
"Bash(ls:*)",
29-
"Bash(grep:*)",
29+
"Bash(grep:*)"
3030
],
3131
"deny": [],
3232
"ask": []

.github/actions/setup-rust/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ runs:
4242
- name: Install Cargo tools
4343
shell: bash
4444
run: |
45-
cargo install taplo-cli --locked
46-
cargo install just
47-
cargo install --version 0.8.0 cargo-machete --locked
45+
command -v taplo &> /dev/null || cargo install taplo-cli --locked
46+
command -v just &> /dev/null || cargo install just
47+
command -v cargo-machete &> /dev/null || cargo install --version 0.8.0 cargo-machete --locked

0 commit comments

Comments
 (0)