Skip to content

updated the variable for ingress rules #159

updated the variable for ingress rules

updated the variable for ingress rules #159

Workflow file for this run

---
name: snyk
on: # yamllint disable-line rule:truthy
push:
branches:
- "**" # matches every branch
- "!main" # excludes main
pull_request:
branches:
- main
jobs:
security:
runs-on: ubuntu-latest
name: snyk
steps:
- name: checkout
uses: actions/checkout@v2
- name: Vulnerability scan
uses: snyk/actions/iac@master
with:
command: monitor
args: --severity-threshold=low
- name: Set up Node 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: install Snyk CLI
run: npm install -g snyk
- name: snyk monitor
run: snyk iac test --report --severity-threshold=medium
env:
SNYK_TOKEN: ${{ secrets.ARC_SNYK_TOKEN }}