Skip to content

Commit 41bd1a7

Browse files
committed
fix: add missing toolchain parameter to security workflow
- Add 'toolchain: stable' to dtolnay/rust-toolchain action - Remove continue-on-error from cargo-deny since deny.toml is configured - Fixes workflow parsing error that caused immediate failure
1 parent 3a433ba commit 41bd1a7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/security.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333

3434
- name: Install Rust
3535
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a # stable
36+
with:
37+
toolchain: stable
3638

3739
- name: Cache cargo registry
3840
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5
@@ -89,7 +91,6 @@ print(json.dumps(sarif))
8991
with:
9092
command: check
9193
arguments: --all-features
92-
continue-on-error: true # Don't fail until deny.toml is configured
9394

9495
dependency-review:
9596
name: Dependency Review

0 commit comments

Comments
 (0)