Ignore RUSTSEC-2023-0071 in security audit

RUSTSEC-2023-0071 (Marvin Attack) affects RSA private key operations.
This application uses HS256 for internal JWT signing and only performs
RSA public key verification (not private key operations) for OIDC/OAuth2.
This commit is contained in:
George Wu
2026-02-24 17:04:02 -08:00
parent 7786871d6c
commit 7e2e110cec
+4
View File
@@ -70,9 +70,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
# RUSTSEC-2023-0071 (Marvin Attack): rsa crate is a transitive dependency from jsonwebtoken.
# Not affected: This application uses HS256 for internal JWT signing and only performs
# RSA public key verification (not private key operations) for OIDC/OAuth2 tokens.
- uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
ignore: RUSTSEC-2023-0071
build:
name: Build Check