diff options
author | Fredrik Enestad <[email protected]> | 2024-10-30 10:02:27 +0100 |
---|---|---|
committer | Yuchen Wu <[email protected]> | 2024-10-31 16:52:04 -0700 |
commit | ab6f84cf8bbc023dfca31b58256e4d506a67298c (patch) | |
tree | 8d7259e9a1ae18ef2f45c4befc0931a032c46a86 | |
parent | 1c6eed066b57e5bf387b7ebcad9e447515dece80 (diff) | |
download | pingora-ab6f84cf8bbc023dfca31b58256e4d506a67298c.tar.gz pingora-ab6f84cf8bbc023dfca31b58256e4d506a67298c.zip |
fix audit workflow
-rw-r--r-- | .github/workflows/audit.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index b943e5d..cd10b8c 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -22,6 +22,10 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Generate Cargo.lock + # https://github.com/rustsec/audit-check/issues/27 + run: cargo generate-lockfile + - name: Audit Check # https://github.com/rustsec/audit-check/issues/2 uses: rustsec/audit-check@master |