Skip to content

Commit 3cf6e75

Browse files
committed
chore(deps): install cargo audit
Signed-off-by: Radu Matei <[email protected]>
1 parent 41b309a commit 3cf6e75

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install Rust
3232
uses: dtolnay/rust-toolchain@stable
3333
with:
34-
toolchain: 1.87
34+
toolchain: 1.88
3535

3636
- name: Install dependencies
3737
run: |
@@ -41,8 +41,10 @@ jobs:
4141
- name: lint code
4242
run: cargo fmt --all -- --check
4343

44-
- name: audit code
45-
run: cargo audit
44+
- name: cargo audit
45+
run: |
46+
cargo install cargo-audit --locked
47+
cargo audit
4648
4749
- name: Run Clippy
4850
run: cargo clippy --all -- -D warnings
@@ -71,7 +73,7 @@ jobs:
7173
- name: Install Rust
7274
uses: dtolnay/rust-toolchain@stable
7375
with:
74-
toolchain: 1.87
76+
toolchain: 1.88
7577
targets: ${{ matrix.config.target }}
7678
- name: Install Spin
7779
uses: rajatjindal/setup-actions/spin@main

0 commit comments

Comments
 (0)