Allow DP to retry Handshake if node was offline and lost authentication #207
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
name: Snyk vunulrability check | |
on: push | |
jobs: | |
security: | |
strategy: | |
matrix: | |
go: [1.18, 1.19] | |
directory: [ "node", "data-provider", "oracle-contract"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: snyk/actions/setup@master | |
- uses: actions/[email protected] | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Snyk monitor | |
run: | | |
echo ${{ secrets.SNYK_TOKEN }} | |
cd ${{ matrix.directory }} | |
snyk test --severity-threshold=high | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} |