From b009792b7a92322dbec4bc346a5833101cc3accf Mon Sep 17 00:00:00 2001 From: Aitor Ruano <45633475+c0dearm@users.noreply.github.com> Date: Fri, 24 Jan 2020 10:46:27 +0100 Subject: [PATCH] Create sec.yml Check for vulnerabilities on dependencies --- .github/workflows/sec.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/sec.yml diff --git a/.github/workflows/sec.yml b/.github/workflows/sec.yml new file mode 100644 index 0000000..833ddcc --- /dev/null +++ b/.github/workflows/sec.yml @@ -0,0 +1,17 @@ +on: + push: + paths: + - '**/Cargo.toml' + - '**/Cargo.lock' + +name: Security Audit + +jobs: + security: + name: Security + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}