Skip to content

Bump nanoid from 5.0.7 to 5.0.9 in /web #423

Bump nanoid from 5.0.7 to 5.0.9 in /web

Bump nanoid from 5.0.7 to 5.0.9 in /web #423

Workflow file for this run

name: Snyk Vulnerability Scan
on:
pull_request:
branches:
- development
jobs:
snyk-security:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.22.3' # Specify the Go version you need
- name: Install Go dependencies
run: go mod tidy
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/golang@master
with:
args: test --org=$SNYK_ORG --severity-threshold=high
env:
SNYK_ORG: ${{ secrets.SNYK_ORG }}
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}