Skip to content

Commit

Permalink
Introduce OSV scanning workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlospt committed Mar 22, 2024
1 parent dc0865f commit 2204aa2
Show file tree
Hide file tree
Showing 3 changed files with 2,238 additions and 6 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/osv-scan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: OSV Scan

on: push

jobs:
extract-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "upload Cargo.lock"
uses: actions/upload-artifact@v4
with:
name: cargo-lock
path: Cargo.lock
retention-days: 2
vuln-scan:
name: Vulnerability scanning
needs: extract-deps
uses: "google/osv-scanner-action/.github/workflows/[email protected]"
with:
download-artifact: cargo-lock
scan-args: |-
--lockfile=Cargo.lock
permissions:
security-events: write
contents: read
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,13 @@
debug/
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb


# Added by cargo

/target
.idea/
.DS_Store
Expand Down
Loading

0 comments on commit 2204aa2

Please sign in to comment.