chore(deps): bump ejs from 3.1.9 to 3.1.10 (#8480) #4716
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 | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'develop' | |
jobs: | |
test: | |
# Only run on push events or PRs from iotaledger/firefly, skip on PRs from forks | |
# Secret variables cannot be exposed to PRs from forks | |
if: github.event_name == 'push' | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check vulnerabilities | |
uses: snyk/actions/[email protected] | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
with: | |
args: --yarn-workspaces --strict-out-of-sync=false --detection-depth=5 --dev |