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.
22 lines
485 B
22 lines
485 B
2 months ago
|
name: govulncheck
|
||
2 months ago
|
on:
|
||
2 months ago
|
push:
|
||
|
paths:
|
||
|
- go.sum
|
||
2 months ago
|
schedule:
|
||
|
- cron: "0 0 * * *"
|
||
|
|
||
|
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'
|
||
|
- name: govulncheck
|
||
|
uses: golang/govulncheck-action@dd0578b371c987f96d1185abb54344b44352bd58 # pin@1.0.3
|
||
|
with:
|
||
2 months ago
|
go-package: ./...
|