Skip to content

chore(deps): bump golang.org/x/crypto from 0.46.0 to 0.47.0 in the minor-and-patch group #6

chore(deps): bump golang.org/x/crypto from 0.46.0 to 0.47.0 in the minor-and-patch group

chore(deps): bump golang.org/x/crypto from 0.46.0 to 0.47.0 in the minor-and-patch group #6

Workflow file for this run

name: deps-ci
on:
pull_request:
branches: [ main, master ]
workflow_dispatch:
permissions:
contents: read
jobs:
go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
check-latest: true
- run: go mod tidy
- run: go build ./...
- run: go test ./...
- name: govulncheck (non-blocking)
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
"$(go env GOPATH)/bin/govulncheck" ./... || true