mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
510 B
24 lines
510 B
name: govulncheck
|
|
on:
|
|
push:
|
|
paths:
|
|
- go.sum
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
govulncheck:
|
|
name: govulncheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # pin@5.0.2
|
|
with:
|
|
go-version: '1.22.7'
|
|
- name: govulncheck
|
|
uses: golang/govulncheck-action@dd0578b371c987f96d1185abb54344b44352bd58 # pin@1.0.3
|
|
with:
|
|
go-package: ./...
|