29 lines
742 B
YAML
29 lines
742 B
YAML
# THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
|
|
# Edit https://github.com/cert-manager/makefile-modules/blob/main/modules/go/base/.github/workflows/govulncheck.yaml instead.
|
|
|
|
# Run govulncheck at midnight every night on the main branch,
|
|
# to alert us to recent vulnerabilities which affect the Go code in this
|
|
# project.
|
|
name: govulncheck
|
|
on:
|
|
workflow_dispatch: {}
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
govulncheck:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- id: go-version
|
|
run: |
|
|
make print-go-version >> "$GITHUB_OUTPUT"
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ steps.go-version.outputs.result }}
|
|
|
|
- run: make verify-govulncheck
|