mirror of
https://github.com/helm/helm.git
synced 2026-04-24 15:49:11 -04:00
moving govulncheck to a seperate job
Signed-off-by: Robert Sirchia <rsirchia@outlook.com>
This commit is contained in:
parent
1ad6af9287
commit
38dd4a7fea
1 changed files with 9 additions and 3 deletions
12
.github/workflows/build-test.yml
vendored
12
.github/workflows/build-test.yml
vendored
|
|
@ -3,8 +3,6 @@ on:
|
|||
push:
|
||||
pull_request:
|
||||
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
@ -21,7 +19,15 @@ jobs:
|
|||
run: make test-coverage
|
||||
- name: Test build
|
||||
run: make build
|
||||
- name: Run govulncheck
|
||||
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:
|
||||
go-package: ./...
|
||||
Loading…
Reference in a new issue