Skip to content

Bump github.com/grafana/pyroscope-go from 1.4.1 to 1.4.2 #13

Bump github.com/grafana/pyroscope-go from 1.4.1 to 1.4.2

Bump github.com/grafana/pyroscope-go from 1.4.1 to 1.4.2 #13

Workflow file for this run

name: Security
on:
schedule:
# Weekly, Monday 06:17 UTC. Odd minute avoids the top-of-hour rush.
- cron: '17 6 * * 1'
workflow_dispatch:
pull_request:
paths:
- go.mod
- go.sum
permissions:
contents: read
jobs:
govulncheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: go.mod
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Scan for known vulnerabilities
run: govulncheck ./...