Skip to content

chore(deps): bump codecov/codecov-action from 5 to 6 #77

chore(deps): bump codecov/codecov-action from 5 to 6

chore(deps): bump codecov/codecov-action from 5 to 6 #77

Workflow file for this run

name: govulncheck
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 6 * * 1" # monday 06:00 UTC
permissions:
contents: read
jobs:
govulncheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: set up go
uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@v1.1.4
- name: run govulncheck
run: govulncheck ./...
continue-on-error: true