mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-05 05:40:07 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
616 B
YAML
29 lines
616 B
YAML
name: govulncheck
|
|
on:
|
|
push:
|
|
paths:
|
|
- go.sum
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch: {}
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
govulncheck:
|
|
name: govulncheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
- name: Install Go
|
|
uses: ./.github/actions/setup-go
|
|
- name: Go Generate
|
|
run: |
|
|
./scripts/download
|
|
./scripts/generate
|
|
- name: Install govulncheck
|
|
run: go install golang.org/x/vuln/cmd/govulncheck@latest
|
|
- name: Run govulncheck
|
|
run: govulncheck -format=text ./...
|