From c40666c1be655f6a0fa29f2d4bd934aa68c1100b Mon Sep 17 00:00:00 2001 From: Zoheb Shaikh <26975142+ZohebShaikh@users.noreply.github.com> Date: Mon, 26 Jan 2026 09:42:56 +0000 Subject: [PATCH 1/2] Add cargo audit --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa57006..0120e25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,3 +90,11 @@ jobs: # Ensure that no files (most likely the Cargo.lock file) have changed - name: Unstaged Changes run: git diff --exit-code + + security_audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: rustsec/audit-check@v2.0.0 + # with: + # token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From 68a37fabdf7008275fd73e6f896beca7626c490e Mon Sep 17 00:00:00 2001 From: Zoheb Shaikh <26975142+ZohebShaikh@users.noreply.github.com> Date: Mon, 26 Jan 2026 10:39:22 +0000 Subject: [PATCH 2/2] Add github token --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0120e25..6585086 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,5 +96,5 @@ jobs: steps: - uses: actions/checkout@v4 - uses: rustsec/audit-check@v2.0.0 - # with: - # token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + with: + token: ${{ secrets.GITHUB_TOKEN }}