Skip to content

Commit b7ff798

Browse files
committed
fix: bumping github actions rust templates
1 parent 6a53684 commit b7ff798

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

github_linter/fixes/github_actions/templates/Rust/clippy.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Setup sccache
22-
uses: mozilla-actions/[email protected]
23-
with:
24-
version: "v0.4.2"
22+
uses: mozilla-actions/[email protected]
2523
- name: "Run clippy (ignores errors, this is just a check)"
2624
run: cargo clippy
2725
continue-on-error: true
26+
- name: Run sccache stat for check
27+
shell: bash
28+
run: ${SCCACHE_PATH} --show-stats

github_linter/fixes/github_actions/templates/Rust/rust_test.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,11 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Setup sccache
18-
uses: mozilla-actions/[email protected]
19-
with:
20-
version: "v0.5.4"
18+
uses: mozilla-actions/[email protected]
2119
- name: Install Rust
2220
uses: dtolnay/rust-toolchain@stable
2321
with:
2422
toolchain: stable
25-
- name: Setup sccache
26-
uses: mozilla-actions/[email protected]
27-
with:
28-
version: "v0.4.2"
2923
- name: Install typical dependencies
3024
run: |
3125
sudo apt-get update && \
@@ -37,3 +31,6 @@ jobs:
3731
run: cargo clippy
3832
- name: "Build the workspace"
3933
run: cargo build --workspace
34+
- name: Run sccache stat for check
35+
shell: bash
36+
run: ${SCCACHE_PATH} --show-stats

0 commit comments

Comments
 (0)