Skip to content

Bump cg-bundler version to 1.1.10 for improved functionality and opti… #10

Bump cg-bundler version to 1.1.10 for improved functionality and opti…

Bump cg-bundler version to 1.1.10 for improved functionality and opti… #10

Workflow file for this run

name: Security Audit
permissions:
contents: read
actions: write
on:
schedule:
# Run daily at 02:00 UTC
- cron: '0 2 * * *'
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
security-audit:
name: Security Audit
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Install cargo-deny
run: cargo install cargo-deny
- name: Run cargo audit
run: cargo audit
- name: Run cargo deny
run: cargo deny check
- name: Upload security report
if: failure()
uses: actions/upload-artifact@v4
with:
name: security-report
path: |
audit-report.txt
deny-report.txt