This repository was archived by the owner on Jan 19, 2026. It is now read-only.
Merge pull request #1311 from kubewarden/renovate/lock-file-maintenance #1974
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 }} |