cognito related changes updated #1023
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: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- "**" # matches every branch | |
- "!main" # excludes main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
security: | |
runs-on: [self-hosted, linux, codebuild] | |
name: snyk | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Vulnerability scan | |
uses: snyk/actions/iac@master | |
with: | |
command: monitor | |
args: --severity-threshold=low | |
- name: Set up Node 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: install Snyk CLI | |
run: npm install -g snyk | |
- name: snyk monitor | |
run: snyk iac test --report --severity-threshold=critical | |
env: | |
SNYK_TOKEN: ${{ secrets.ARC_SNYK_TOKEN }} |