-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): Update sqlx to resolve vulnerability
fixup fixup fixup
- Loading branch information
1 parent
75d68a7
commit dccf667
Showing
4 changed files
with
255 additions
and
250 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Pull Request Security Audit | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**/Cargo.toml' | ||
pull_request: | ||
paths: | ||
- '**/Cargo.toml' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
security-audit: | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'ci skip')" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install cargo-audit | ||
run: cargo install cargo-audit | ||
|
||
- name: Generate lockfile | ||
run: cargo generate-lockfile | ||
|
||
- name: Audit dependencies | ||
run: cargo audit -D warnings --ignore RUSTSEC-2022-0090 |
Oops, something went wrong.