Skip to content

Update module golang.org/x/crypto to v0.52.0 [SECURITY] #308

Update module golang.org/x/crypto to v0.52.0 [SECURITY]

Update module golang.org/x/crypto to v0.52.0 [SECURITY] #308

Workflow file for this run

name: govulncheck
on:
pull_request:
jobs:
govulncheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: 'go.mod'
cache-dependency-path: 'go.sum'
check-latest: true
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
shell: bash
- name: Run govulncheck
run: govulncheck ./...
shell: bash