Skip to content

deps: bump golangci/golangci-lint-action from 5.0.0 to 6.0.1 #78

deps: bump golangci/golangci-lint-action from 5.0.0 to 6.0.1

deps: bump golangci/golangci-lint-action from 5.0.0 to 6.0.1 #78

Workflow file for this run

name: vuln
permissions: {} # no need any permissions
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 10 * * 1' # run "At 10:00 on Monday"
workflow_call:
jobs:
run:
name: Vuln
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: true
matrix:
go: ["stable", "oldstable"]
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
check-latest: true
- name: Checkout
uses: actions/checkout@v4
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Run govulncheck
run: govulncheck -test ./...