govulncheck #262
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 * * *' | |
permissions: | |
contents: read | |
jobs: | |
govulncheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
# Adding `fetch-depth: 0` makes sure tags are also fetched. We need | |
# the tags so `git describe` returns a valid version. | |
# see https://github.com/actions/checkout/issues/701 for extra info about this option | |
with: { fetch-depth: 0 } | |
- id: go-version | |
run: | | |
make print-go-version >> "$GITHUB_OUTPUT" | |
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
go-version: ${{ steps.go-version.outputs.result }} | |
- run: make verify-govulncheck |