mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
Added horusec (#10499)
* Added horusec * Improving aesthetics * Restrict branch
This commit is contained in:
parent
ac8d27bcf1
commit
6903d52dde
22
.github/workflows/horusec.yaml
vendored
Normal file
22
.github/workflows/horusec.yaml
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
name: Horusec Security Scan
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
# Runs cron at 16.00 UTC on
|
||||||
|
- cron: '0 0 * * SUN'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Horusec_Scan:
|
||||||
|
name: horusec-Scan
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.ref == 'refs/heads/develop'
|
||||||
|
steps:
|
||||||
|
- name: Check out code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with: # Required when commit authors is enabled
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Running Security Scan
|
||||||
|
run: |
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/ZupIT/horusec/main/deployments/scripts/install.sh | bash -s latest
|
||||||
|
horusec start -t="10000" -p="./" -e="true" -i="**/crypto/bls/herumi/**, **/**/*_test.go, **/third_party/afl/**, **/crypto/keystore/key.go"
|
Loading…
Reference in New Issue
Block a user