Skip to content

Bump golang.org/x/crypto from 0.27.0 to 0.31.0 #412

Bump golang.org/x/crypto from 0.27.0 to 0.31.0

Bump golang.org/x/crypto from 0.27.0 to 0.31.0 #412

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 }}