This repository was archived by the owner on Jan 19, 2026. It is now read-only.
build(deps): update all patch level dependencies (#1104) #1716
This file contains hidden or 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: | |
| push: | |
| paths: | |
| - "**/Cargo.toml" | |
| - "**/Cargo.lock" | |
| # Declare default permissions as read only. | |
| permissions: read-all | |
| jobs: | |
| security_audit: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| checks: write # for rustsec/audit-check to create check | |
| contents: read # for actions/checkout to fetch code | |
| issues: write # for rustsec/audit-check to create issues | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: rustsec/audit-check@69366f33c96575abad1ee0dba8212993eecbe998 # v2.0.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |