Support ENABLE_TLS_NATIVE_ROOTS to use system TLS CAs (#3660) #1176
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: security | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
paths: | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
name: "Audit Rust Dependencies" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: rustsec/audit-check@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |