Skip to content

use genericclioptions package to handle kubeconfig #1102

use genericclioptions package to handle kubeconfig

use genericclioptions package to handle kubeconfig #1102

Workflow file for this run

name: VulnCheck
on:
push:
branches: [ master, devel ]
pull_request:
branches: [ master, devel ]
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
vulncheck:
name: Analysis
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
check-latest: true
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
shell: bash
- name: Run govulncheck
run: govulncheck ./...
shell: bash