From a4ce650b3db8a80eed96a72783880f5e62f68421 Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Thu, 3 Feb 2022 16:12:51 +0200 Subject: [PATCH] Use electronegativity to identify misconfigurations and security issues (#4783) --- .github/workflows/electronegativity.yml | 26 +++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/electronegativity.yml diff --git a/.github/workflows/electronegativity.yml b/.github/workflows/electronegativity.yml new file mode 100644 index 0000000000..6c52ed144f --- /dev/null +++ b/.github/workflows/electronegativity.yml @@ -0,0 +1,26 @@ +on: + push: + +name: Electronegativity +on: + - pull_request +jobs: + build_job: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - uses: actions/setup-node@v2 + with: + node-version: '14' + + - uses: doyensec/electronegativity-action@v1.1 + with: + input: src/ + electron-version: "14.2.4" + severity: medium + + - name: Upload sarif + uses: github/codeql-action/upload-sarif@v1 + with: + sarif_file: ../results