Security audit #944
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 audit | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: rustsec/audit-check@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# RUSTSEC-2023-0071 - Marvin Attack: potential key recovery through timing sidechannels (rsa crate) | |
# Reason for ignore: Vulnerable code is not actually used | |
# Explanation: | |
# The 'rsa' crate is pulled in by the 'sqlx-mysql' crate. The 'sqlx-mysql' crate | |
# is only pulled in because we use the `migrate` feature of `sqlx`. However, we | |
# only use the postgres and sqlite DB drivers. | |
ignore: RUSTSEC-2023-0071 |