...

Text file src/github.com/cert-manager/issuer-lib/.github/workflows/govulncheck.yaml

Documentation: github.com/cert-manager/issuer-lib/.github/workflows

     1# THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
     2# Edit https://github.com/cert-manager/makefile-modules/blob/main/modules/go/base/.github/workflows/govulncheck.yaml instead.
     3
     4# Run govulncheck at midnight every night on the main branch,
     5# to alert us to recent vulnerabilities which affect the Go code in this
     6# project.
     7name: govulncheck
     8on:
     9  workflow_dispatch: {}
    10  schedule:
    11    - cron: '0 0 * * *'
    12
    13jobs:
    14  govulncheck:
    15    runs-on: ubuntu-latest
    16
    17    steps:
    18      - uses: actions/checkout@v4
    19
    20      - id: go-version
    21        run: |
    22          make print-go-version >> "$GITHUB_OUTPUT"
    23
    24      - uses: actions/setup-go@v5
    25        with:
    26          go-version: ${{ steps.go-version.outputs.result }}
    27
    28      - run: make verify-govulncheck

View as plain text