Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
9 changes: 8 additions & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy

- name: Cache dependencies
uses: actions/cache@v4
Expand Down Expand Up @@ -64,6 +66,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy

- name: Install cargo-deny
run: cargo install cargo-deny --force

Expand Down Expand Up @@ -98,7 +105,7 @@ jobs:
- name: Build Docker image
run: |
cat > Dockerfile.security-scan << 'EOF'
FROM rust:1.70-slim
FROM rust:1.82-slim
WORKDIR /app
COPY . .
RUN cargo build --release
Expand Down
Loading