Skip to content

Commit 30ae60e

Browse files
authored
ci: fix audit failing by generating cargo lock file before running it (#229)
1 parent 664cf8b commit 30ae60e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/audit.yml

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13+
14+
- name: Generate Cargo.lock # https://github.com/rustsec/audit-check/issues/27
15+
run: cargo generate-lockfile
16+
17+
- name: Audit Check
1318
- uses: rustsec/[email protected]
1419
with:
1520
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)